結果

問題 No.2780 The Bottle Imp
ユーザー Today03Today03
提出日時 2024-06-08 00:38:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,974 bytes
コンパイル時間 2,533 ms
コンパイル使用メモリ 219,416 KB
実行使用メモリ 47,024 KB
最終ジャッジ日時 2024-06-08 10:40:29
合計ジャッジ時間 5,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 59 ms
16,256 KB
testcase_08 AC 57 ms
16,128 KB
testcase_09 AC 55 ms
16,128 KB
testcase_10 AC 55 ms
16,000 KB
testcase_11 AC 57 ms
16,128 KB
testcase_12 AC 109 ms
33,068 KB
testcase_13 AC 105 ms
32,944 KB
testcase_14 AC 34 ms
6,272 KB
testcase_15 AC 35 ms
6,400 KB
testcase_16 AC 34 ms
6,272 KB
testcase_17 AC 33 ms
6,272 KB
testcase_18 AC 34 ms
6,272 KB
testcase_19 AC 34 ms
6,272 KB
testcase_20 AC 34 ms
6,272 KB
testcase_21 AC 34 ms
6,272 KB
testcase_22 AC 21 ms
6,912 KB
testcase_23 AC 29 ms
6,528 KB
testcase_24 AC 49 ms
13,952 KB
testcase_25 AC 83 ms
23,216 KB
testcase_26 AC 42 ms
9,984 KB
testcase_27 AC 30 ms
8,808 KB
testcase_28 AC 29 ms
8,808 KB
testcase_29 WA -
testcase_30 AC 33 ms
15,844 KB
testcase_31 AC 56 ms
15,524 KB
testcase_32 AC 19 ms
5,376 KB
testcase_33 AC 69 ms
25,912 KB
testcase_34 AC 108 ms
47,024 KB
testcase_35 AC 17 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 WA -
testcase_38 AC 16 ms
5,376 KB
testcase_39 AC 53 ms
15,520 KB
testcase_40 AC 51 ms
15,524 KB
testcase_41 AC 51 ms
15,656 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 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;

// #include "kyopro_library/graph/toposort.hpp"

struct SCC {
    vector<vector<int>> members, graph_decomposed;
    vector<int> group;
};

SCC scc_decomposition(const vector<vector<int>> &G) {
    int n = G.size();
    vector<vector<int>> G2(n);
    for (int i = 0; i < n; i++) {
        for (int nxt : G[i]) {
            G2[nxt].push_back(i);
        }
    }
    vector<int> order(n), component(n, -1);
    vector<bool> vst(n);
    auto F = [&](auto F, int now) -> void {
        vst[now] = true;
        for (int nxt : G[now]) {
            if (!vst[nxt]) {
                F(F, nxt);
            }
        }
        order.push_back(now);
    };
    auto F2 = [&](auto F2, int now, int idx) -> void {
        component[now] = idx;
        for (int nxt : G2[now]) {
            if (component[nxt] == -1) {
                F2(F2, nxt, idx);
            }
        }
    };
    for (int i = 0; i < n; i++) {
        if (!vst[i]) {
            F(F, i);
        }
    }
    int idx = 0;
    reverse(order.begin(), order.end());
    for (int now : order) {
        if (component[now] == -1) {
            F2(F2, now, idx);
            idx++;
        }
    }
    int n_n = *max_element(component.begin(), component.end()) + 1;
    vector<vector<int>> ret(n_n);
    for (int i = 0; i < n; i++) {
        ret[component[i]].push_back(i);
    }
    vector<vector<int>> ret2(n_n);
    for (int i = 0; i < n; i++) {
        for (int j : G[i]) {
            if (component[i] != component[j]) {
                ret2[component[i]].push_back(component[j]);
            }
        }
    }
    for (int i = 0; i < n_n; i++) {
        sort(ret2[i].begin(), ret2[i].end());
        ret2[i].erase(unique(ret2[i].begin(), ret2[i].end()), ret2[i].end());
    }
    return {ret, ret2, component};
}

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);
        }
    }

    auto [member, nG, group] = scc_decomposition(G);
    if (count(member[0].begin(), member[0].end(), 0) == 0) {
        cout << "No" << endl;
        return 0;
    }

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

    int end_point = 0;

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

        if (G[now].size() == 0) {
            end_point++;
        }

        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 && end_point <= 1) {
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
}
0