标签:
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 47729 | Accepted: 13895 |
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
Source
解析:由于有三种动物,那我们就需要建立3个并查集,当然我们没必要开三个数组,直接放到一个数组的不同位置就行了。直接按照题意中的方法判断错误语句即可。不过在合并的时候,要注意三种动物之间的关系:A吃B, B吃C, C吃A。主要是判断谁跟谁该合并在一起。
PS:POJ的这道题的后台数据貌似有点问题,不能读到文件尾。总之用了循环读入的,肯定WA,只能读入单组数据!!!
AC代码:
#include <cstdio> #include <algorithm> #include <map> #include <string> #include <iostream> using namespace std; const int maxn = 50002; int N, K; int f[3*maxn], rank[3*maxn]; void init(int n){ for(int i=0; i<n; i++){ f[i] = i; rank[i] = 0; } } int find(int x){ return x == f[x] ? x : f[x] = find(f[x]); } void unite(int a, int b){ int x = find(a); int y = find(b); if(x == y) return ; if(rank[x] < rank[y]) f[x] = y; else{ f[y] = x; if(rank[x] == rank[y]) rank[x] ++; } } bool same(int x, int y){ return find(x) == find(y); } int main(){ #ifdef sxk freopen("in.txt", "r", stdin); #endif //sxk int t, x, y; // while(~scanf("%d%d", &N, &K)){ //WA scanf("%d%d", &N, &K); //必须读入单组数据 int cnt = 0; init(3*N); //建一个3*N的并查集,存了3个并查集 int ans = 0; for(int i=0; i<K; i++){ scanf("%d%d%d", &t, &x, &y); x --; y --; //转换成0~N-1 if(x < 0 || x >= N || y < 0 || y >= N){ //超出范围 ans ++; continue; } if(t == 1){ //x和y同类 if(same(x, y + N) || same(x, y + 2*N)) ans ++; else{ unite(x, y); //同类合并 unite(x + N, y + N); unite(x + 2*N, y + 2*N); } } else{ //x吃y if(same(x, y) || same(x, y + 2*N)) ans ++; //不符合食物链 else{ unite(x, y + N); //同类合并 unite(x + N, y + 2*N); unite(x + 2*N, y); } } } printf("%d\n", ans); // } return 0; }
标签:
原文地址:http://blog.csdn.net/u013446688/article/details/43085839