結果

問題 No.2780 The Bottle Imp
ユーザー Today03Today03
提出日時 2024-06-08 00:32:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,644 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 210,956 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-06-08 10:40:28
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 32 ms
6,016 KB
testcase_08 AC 33 ms
6,016 KB
testcase_09 AC 33 ms
6,016 KB
testcase_10 AC 32 ms
6,016 KB
testcase_11 AC 32 ms
6,016 KB
testcase_12 AC 51 ms
8,704 KB
testcase_13 AC 50 ms
8,704 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 28 ms
5,376 KB
testcase_16 AC 28 ms
5,376 KB
testcase_17 AC 27 ms
5,376 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 28 ms
5,376 KB
testcase_21 AC 27 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 23 ms
5,376 KB
testcase_24 AC 29 ms
5,632 KB
testcase_25 AC 42 ms
7,296 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 25 ms
5,888 KB
testcase_28 AC 24 ms
5,760 KB
testcase_29 WA -
testcase_30 AC 19 ms
6,144 KB
testcase_31 AC 43 ms
8,448 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 46 ms
9,088 KB
testcase_34 AC 47 ms
9,728 KB
testcase_35 AC 14 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 15 ms
5,376 KB
testcase_39 AC 40 ms
7,296 KB
testcase_40 AC 39 ms
7,296 KB
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

vector<int> topological_sort(const vector<vector<int>> &G) {
    int n = G.size();
    vector<int> indeg(n);
    for (int i = 0; i < n; i++) {
        for (int nxt : G[i]) {
            indeg[nxt]++;
        }
    }
    queue<int> Q;
    for (int i = 0; i < n; i++) {
        if (indeg[i] == 0) {
            Q.push(i);
        }
    }
    vector<int> ret;
    while (!Q.empty()) {
        int now = Q.front();
        Q.pop();
        for (int nxt : G[now]) {
            indeg[nxt]--;
            if (indeg[nxt] == 0) {
                Q.push(nxt);
            }
        }
        ret.push_back(now);
    }
    return ret;
}

int main() {
    int N;
    cin >> N;
    vector<vector<int>> G(N);
    for (int i = 0; i < N; i++) {
        int m;
        cin >> m;
        for (int j = 0; j < m; j++) {
            int a;
            cin >> a;
            a--;
            G[i].push_back(a);
        }
    }

    vector<int> tp = topological_sort(G);
    int start = tp.size() == N ? tp.front() : 0;

    queue<int> Q;
    Q.push(start);
    vector<bool> seen(N, false);
    seen[start] = true;

    while (!Q.empty()) {
        int now = Q.front();
        Q.pop();

        for (int nxt : G[now]) {
            if (!seen[nxt]) {
                seen[nxt] = true;
                Q.push(nxt);
            }
        }
    }

    bool ans = true;
    for (bool x : seen) {
        if (!x) {
            ans = false;
        }
    }

    if (ans) {
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
}
0