結果

問題 No.2780 The Bottle Imp
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-06-07 22:50:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,934 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 171,192 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-06-08 10:36:08
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 35 ms
5,888 KB
testcase_08 AC 36 ms
6,272 KB
testcase_09 AC 38 ms
6,144 KB
testcase_10 AC 37 ms
6,144 KB
testcase_11 AC 36 ms
5,760 KB
testcase_12 AC 53 ms
8,064 KB
testcase_13 AC 52 ms
8,064 KB
testcase_14 AC 32 ms
5,376 KB
testcase_15 AC 32 ms
5,376 KB
testcase_16 AC 34 ms
5,376 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 32 ms
5,376 KB
testcase_19 AC 33 ms
5,376 KB
testcase_20 AC 34 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 17 ms
5,376 KB
testcase_23 AC 27 ms
5,376 KB
testcase_24 AC 32 ms
5,760 KB
testcase_25 AC 48 ms
7,168 KB
testcase_26 AC 30 ms
5,376 KB
testcase_27 AC 27 ms
5,760 KB
testcase_28 AC 28 ms
5,760 KB
testcase_29 WA -
testcase_30 AC 22 ms
5,632 KB
testcase_31 AC 49 ms
8,576 KB
testcase_32 AC 20 ms
5,376 KB
testcase_33 AC 59 ms
15,360 KB
testcase_34 AC 58 ms
15,360 KB
testcase_35 AC 17 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 17 ms
5,376 KB
testcase_39 AC 46 ms
9,344 KB
testcase_40 AC 46 ms
9,344 KB
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct UnionFind {
    vector<int> par, rank, siz;

    // 構造体の初期化
    UnionFind(int n) : par(n,-1), rank(n,0), siz(n,1) { }

    // 根を求める
    int root(int x) {
        if (par[x]==-1) return x; // x が根の場合は x を返す
        else return par[x] = root(par[x]); // 経路圧縮
    }

    // x と y が同じグループに属するか (= 根が一致するか)
    bool issame(int x, int y) {
        return root(x)==root(y);
    }

    // x を含むグループと y を含むグループを併合する
    bool unite(int x, int y) {
        int rx = root(x), ry = root(y); // x 側と y 側の根を取得する
        if (rx==ry) return false; // すでに同じグループのときは何もしない
        // union by rank
        if (rank[rx]<rank[ry]) swap(rx, ry); // ry 側の rank が小さくなるようにする
        par[ry] = rx; // ry を rx の子とする
        if (rank[rx]==rank[ry]) rank[rx]++; // rx 側の rank を調整する
        siz[rx] += siz[ry]; // rx 側の siz を調整する
        return true;
    }

    // x を含む根付き木のサイズを求める
    int size(int x) {
        return siz[root(x)];
    }
};

void search(vector<int> &Node , vector<vector<int>> &Edge, int v){
    Node[v] = 1;
    for(int i=0;i<Edge[v].size();i++){
        if(Node[Edge[v][i]] == 1){
            continue;
        }
        search(Node,Edge,Edge[v][i]);
    }
}

int main(){
    int N,M;
    int a;
    cin >> N;
    vector<int> Node(N,0);
    vector<vector<int>> Edge(N);
    for(int i=0;i<N;i++){
        cin >> M;
        for(int j=0;j<M;j++){
            cin >> a;
            Edge[i].push_back(a-1);
        }
    }
    search(Node,Edge,0);
    for(int i=0;i<N;i++){
        if(Node[i] == 0){
            cout << "No" << endl;
            return 0;
        }
    }
    cout << "Yes" << endl;
    return 0;
}
0