結果

問題 No.1779 Magical Swap
ユーザー ytftytft
提出日時 2021-12-26 12:43:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 1,578 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 184,340 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-09-22 20:46:58
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 264 ms
17,024 KB
testcase_05 AC 95 ms
9,216 KB
testcase_06 AC 110 ms
10,112 KB
testcase_07 AC 226 ms
15,104 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 54 ms
6,940 KB
testcase_10 AC 281 ms
16,640 KB
testcase_11 AC 129 ms
10,112 KB
testcase_12 AC 36 ms
6,944 KB
testcase_13 AC 209 ms
13,696 KB
testcase_14 AC 290 ms
18,048 KB
testcase_15 AC 218 ms
6,940 KB
testcase_16 AC 170 ms
6,940 KB
testcase_17 AC 138 ms
6,940 KB
testcase_18 AC 2 ms
6,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];
        }
    }
};

void solve(){
    int N,input;
    cin>>N;
    map<list<int>,int> m;
    UnionFind U(N);
    for(int j=2;j<=N;++j){
        for(int k=j*2;k<=N;k+=j){
            U.unite(j-1,k-1);
        }
    }
    for(int j=0;j<N;++j){
        cin>>input;
        ++m[{U.find(j),input}];
    }
    for(int j=0;j<N;++j){
        cin>>input;
        --m[{U.find(j),input}];
    }
    for(auto j=m.begin();j!=m.end();++j){
        if(j->second){
            cout<<"No"<<endl;
            return;
        }
    }
    cout<<"Yes"<<endl;
}

int main(){
    int T;
    cin>>T;
    for(int i=0;i<T;++i){
        solve();
    }
}
0