結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 87 ms
16,128 KB
testcase_08 AC 63 ms
16,256 KB
testcase_09 AC 63 ms
16,128 KB
testcase_10 AC 63 ms
16,000 KB
testcase_11 AC 63 ms
16,128 KB
testcase_12 AC 115 ms
33,100 KB
testcase_13 AC 121 ms
32,936 KB
testcase_14 AC 40 ms
6,272 KB
testcase_15 AC 37 ms
6,400 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
6,272 KB
testcase_19 AC 39 ms
6,272 KB
testcase_20 AC 39 ms
6,272 KB
testcase_21 WA -
testcase_22 AC 24 ms
7,040 KB
testcase_23 AC 34 ms
6,528 KB
testcase_24 AC 53 ms
13,824 KB
testcase_25 AC 89 ms
23,216 KB
testcase_26 AC 47 ms
9,984 KB
testcase_27 AC 33 ms
8,808 KB
testcase_28 AC 33 ms
8,804 KB
testcase_29 WA -
testcase_30 AC 36 ms
15,844 KB
testcase_31 AC 62 ms
15,524 KB
testcase_32 AC 21 ms
5,376 KB
testcase_33 AC 74 ms
25,916 KB
testcase_34 AC 108 ms
47,036 KB
testcase_35 AC 18 ms
5,376 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 19 ms
5,376 KB
testcase_39 AC 59 ms
15,516 KB
testcase_40 AC 57 ms
15,652 KB
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    int start = member[0][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