結果

問題 No.1605 Matrix Shape
ユーザー ytftytft
提出日時 2021-12-29 19:20:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,822 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 182,872 KB
実行使用メモリ 34,476 KB
最終ジャッジ日時 2024-10-04 08:01:47
合計ジャッジ時間 9,866 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 552 ms
34,432 KB
testcase_20 AC 406 ms
24,312 KB
testcase_21 AC 405 ms
24,320 KB
testcase_22 AC 490 ms
34,432 KB
testcase_23 AC 553 ms
34,432 KB
testcase_24 AC 583 ms
34,476 KB
testcase_25 AC 145 ms
14,208 KB
testcase_26 AC 149 ms
14,244 KB
testcase_27 AC 146 ms
14,208 KB
testcase_28 AC 143 ms
14,208 KB
testcase_29 AC 148 ms
14,080 KB
testcase_30 AC 413 ms
24,448 KB
testcase_31 AC 407 ms
24,308 KB
testcase_32 AC 311 ms
19,052 KB
testcase_33 AC 309 ms
19,192 KB
testcase_34 AC 117 ms
13,832 KB
testcase_35 AC 358 ms
28,276 KB
testcase_36 AC 210 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct UnionFind{
    vector<int> parent;
    vector<int> numberOfElements;//根ノードのみ有効
    UnionFind(int n){
        parent.resize(n);
        numberOfElements.resize(n);
        for(int i=0;i<n;++i){
            parent[i]=-1;
            numberOfElements[i]=1;
        }
    }
    int find(int a){
        vector<int> path(0);
        int pointer=a;
        while(parent[pointer]!=-1){
            path.push_back(pointer);
            pointer=parent[pointer];
        }
        for(int i:path){
            parent[i]=pointer;
        }
        return pointer;
    }
    void unite(int a,int b){
        int p=find(a);
        int q=find(b);
        if(p==q){
            return;
        }
        if(numberOfElements[p]<numberOfElements[q]){
            parent[p]=q;
            numberOfElements[q]+=numberOfElements[p];
        }else{
            parent[q]=p;
            numberOfElements[p]+=numberOfElements[q];
        }
    }
};

int main(){
    int N,temp=0,check=0;
    cin>>N;
    map<int,int> cnt;
    vector<vector<int>> a(N,vector<int>(2));
    for(int i=0;i<N;++i){
        for(int j=0;j<2;++j){
            cin>>a[i][j];
            cnt[a[i][j]]+=j*2-1;
        }
    }
    int p=cnt.size();
    map<int,int> comp;
    for(auto i=cnt.begin();i!=cnt.end();++i){
        comp[i->first]=temp;
        ++temp;
        check+=abs(i->second);
    }
    UnionFind U(p);
    for(vector<int> v:a){
        U.unite(comp[v[0]],comp[v[1]]);
    }
    temp=U.find(comp[a[0][0]]);
    for(auto i=cnt.begin();i!=cnt.end();++i){
        if(U.find(comp[i->first])!=temp){
            cout<<0<<endl;
            return 0;
        }
    }
    if(check>2){
        cout<<0<<endl;
    }else if(check){
        cout<<1<<endl;
    }else{
        cout<<p<<endl;
    }
}
0