记录编号 |
287076 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Jan09] 地震损坏 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.011 s |
提交时间 |
2016-08-01 15:34:22 |
内存使用 |
0.66 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
inline int getint(){
static int __c,__x;
static bool __neg;
__x=0;
__neg=false;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
if(__neg)return -__x;
return __x;
}
inline long long getll(){
static long long __x;
static char __c;
static bool __neg;
__x=0;
__neg=false;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
if(__neg)return -__x;
return __x;
}
inline unsigned long long getull(){
static unsigned long long __x;
static char __c;
__x=0;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
return __x;
}
inline void putint(int __x){
static int __a[40],__i,__j;
static bool __neg;
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
}
inline void putll(long long __x){
static int __a[40],__i,__j;
static bool __neg;
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
}
inline void putull(unsigned long long __x){
static int __a[40],__i,__j;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
}
}
using namespace mine;
const int maxn=30010,maxe=100010<<1;
struct edge{
int to;
edge *prev;
edge():to(0),prev(NULL){}
}ee[maxe];
void insert(int,int);
int findroot(int);
void merge(int,int);
int len=0;
int n,c,p,prt[maxn],size[maxn];
edge *last[maxn]={NULL};
int x,y;
bool bad[maxn]={false};
inline int MAIN(){
freopen("damage.in","r",stdin);
freopen("damage.out","w",stdout);
p=getint();
c=getint();
n=getint();
for(int i=1;i<=p;i++){
prt[i]=i;
size[i]=1;
}
for(int i=1;i<=c;i++){
x=getint();
y=getint();
insert(x,y);
insert(y,x);
}
for(int i=1;i<=n;i++){
x=getint();
bad[x]=true;
for(edge *e=last[x];e;e=e->prev)bad[e->to]=true;
}
for(int i=1;i<=p;i++){
if(bad[i])continue;
for(edge *e=last[i];e;e=e->prev){//又是个贪心,直接把报告的点周围的点全部拆掉
if(!bad[e->to])merge(i,e->to);//然而依然不会证明正确性......
}
}
putint(p-size[findroot(1)]);
return 0;
}
inline void insert(int x,int y){
ee[len].to=y;
ee[len].prev=last[x];
last[x]=&ee[len++];
}
inline int findroot(int x){
if(prt[x]!=x)prt[x]=findroot(prt[x]);
return prt[x];
}
inline void merge(int x,int y){
int rx=findroot(x),ry=findroot(y);
if(rx==ry)return;
if(size[rx]<size[ry])swap(rx,ry);
prt[rx]=ry;
size[ry]+=size[rx];
}
int hzoier=MAIN();
int main(){;}
/*
4 3 1
1 2
2 3
3 4
3
Answer:
3
*/
/*
5 7 1
1 2
2 3
3 4
3 5
2 5
1 5
1 4
3
Answer:
4
*/