結果

問題 No.2780 The Bottle Imp
ユーザー Today03Today03
提出日時 2024-06-08 00:32:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,644 bytes
コンパイル時間 2,529 ms
コンパイル使用メモリ 211,116 KB
実行使用メモリ 9,700 KB
最終ジャッジ日時 2024-12-27 14:46:32
合計ジャッジ時間 5,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 40 ms
6,816 KB
testcase_08 AC 40 ms
6,816 KB
testcase_09 AC 41 ms
6,820 KB
testcase_10 AC 39 ms
6,816 KB
testcase_11 AC 38 ms
6,820 KB
testcase_12 AC 63 ms
8,704 KB
testcase_13 AC 62 ms
8,576 KB
testcase_14 AC 33 ms
6,816 KB
testcase_15 AC 33 ms
6,816 KB
testcase_16 AC 33 ms
6,820 KB
testcase_17 AC 35 ms
6,820 KB
testcase_18 AC 34 ms
6,820 KB
testcase_19 AC 33 ms
6,816 KB
testcase_20 AC 32 ms
6,816 KB
testcase_21 AC 33 ms
6,816 KB
testcase_22 AC 18 ms
6,816 KB
testcase_23 AC 27 ms
6,816 KB
testcase_24 AC 34 ms
6,820 KB
testcase_25 AC 53 ms
7,296 KB
testcase_26 AC 34 ms
6,816 KB
testcase_27 AC 31 ms
6,820 KB
testcase_28 AC 29 ms
6,816 KB
testcase_29 WA -
testcase_30 AC 24 ms
6,816 KB
testcase_31 AC 53 ms
8,320 KB
testcase_32 AC 21 ms
6,816 KB
testcase_33 AC 54 ms
9,088 KB
testcase_34 AC 56 ms
9,700 KB
testcase_35 AC 18 ms
6,816 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 15 ms
6,816 KB
testcase_39 AC 48 ms
7,168 KB
testcase_40 AC 49 ms
7,296 KB
testcase_41 WA -
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
6,820 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