結果

問題 No.2316 Freight Train
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-26 21:29:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 1,378 bytes
コンパイル時間 1,374 ms
コンパイル使用メモリ 109,012 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 04:59:07
合計ジャッジ時間 11,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>

using namespace std;
using ll = long long;

struct UnionFind {
    int ngroup;
    vector<int> par;
    vector<int> siz;

    UnionFind(int N) : par(N), siz(N) {
        ngroup = N;
        for(int i = 0; i < N; i++){
            par[i] = i;
            siz[i] = 1;
        }
    }

    int root(int x) {
        if (par[x] == x) return x;
        return par[x] = root(par[x]);
    }

    int unite(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        if (rx == ry) return rx;
        ngroup--;
        if (siz[rx] > siz[ry]) swap(rx, ry);
        par[rx] = ry;
        siz[ry] += siz[rx];
        return ry;
    }

    bool same(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        return rx == ry;
    }

    int size(int x){
        return siz[root(x)];
    }

    int group_count(){
        return ngroup;
    }
};

int main(){
 
    int N, Q, P, A, B;
    cin >> N >> Q;
    UnionFind tree(N+1);

    for (int i=1; i<=N; i++){
        cin >> P;
        if (P == -1) continue;
        else tree.unite(i, P);
    }

    for (int i=0; i<Q; i++){
        cin >> A >> B;
        cout << (tree.same(A, B) ? "Yes" : "No") << endl;
    }
 
    return 0;
}
0