牛客网Interesting Computer Game

题目描述:

牛客网Interesting Computer Game_第1张图片

分析:

就是把不同的数当成图中的点。二元组 (ai,b) 当成是一条边。

然后就没有然后了。

#include 
using namespace std;
const int N=2e5+10;
int T,n,cas,sz[N],f[N];
int find(int x)
{
    return x==f[x]?x:f[x]=find(f[x]);
}
int main()
{
    scanf("%d",&T);
    while(T--){
        scanf("%d",&n);
        for(int i=1;i0;
        std::map<int,int> mp;
        int id=0,ans=0;
        for(int i=1;i<=n;++i)
        {
            int a,b;
            scanf("%d%d",&a,&b);
            if(!mp[a]) mp[a]=++id;
            if(!mp[b]) mp[b]=++id;
            a=mp[a],b=mp[b],a=find(a),b=find(b);
            if(a==b&&!sz[a])
            {
                ans++;
                sz[a]++;
            }
            else if(a^b){
                if(!sz[a]) ++ans;
                else if(!sz[b])
                {
                    ans++;
                    sz[b]++;
                }
                f[a]=b;
            }
        }printf("Case #%d: %d\n",++cas,ans);
    }
}
View Code

 

你可能感兴趣的:(牛客网Interesting Computer Game)