标签:-- sub scanf table space 信息 font lan miss
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 86494 | Accepted: 25887 |
Description
Input
Output
Sample Input
100 7 1 101 1 2 1 2 2 2 3 2 3 3 1 1 3 2 3 1 1 5 5
Sample Output
3
带权并查集,关键是压缩路径的时候害怕信息丢失,所以对路径的压缩有操作。
关键是向量的思维引入,网上有很多人都写了有关的结题报告。关于向量偏移的引入真的是精妙。
http://wxdlut.blog.163.com/blog/static/128770158200982754311269/
还有这一位的blog向量的解释非常详细:https://blog.csdn.net/niushuai666/article/details/6981689
还有比较坑的是,只能单数据输入,不然会wa。(因为这个错了好多次)
1 #include<cstdio> 2 using namespace std; 3 const int maxn=50006; 4 int fa[maxn],re[maxn]; 5 6 int find_fa(int x) 7 { 8 if(fa[x]==x) return x; 9 int tmp=find_fa(fa[x]); 10 re[x]=(re[x]+re[fa[x]])%3; 11 return fa[x]=tmp; 12 } 13 14 int main() 15 { 16 int n,m; 17 scanf("%d%d",&n,&m); 18 for(int i=0;i<=n;i++){ 19 fa[i]=i; 20 re[i]=0; 21 } 22 int d,a,b,ans=0; 23 while(m--){ 24 scanf("%d%d%d",&d,&a,&b); 25 if(a>n||b>n) ans++; 26 else if(d==2&&a==b) ans++; 27 else{ 28 int roota=find_fa(a); 29 int rootb=find_fa(b); 30 if(roota!=rootb){ 31 fa[rootb]=roota; 32 re[rootb]=((d-1)+re[a]+(3-re[b]))%3; ///此处为向量的操作 33 } else{ 34 if(d==2&&((3-re[a]+re[b])%3)!=d-1){ ///这里的方向一个都不能错 35 ans++; 36 } 37 else if(d==1&&re[a]!=re[b]) 38 ans++; 39 } 40 } 41 } 42 printf("%d\n",ans); 43 return 0; 44 }
标签:-- sub scanf table space 信息 font lan miss
原文地址:https://www.cnblogs.com/ZQUACM-875180305/p/9099572.html