結果

問題 No.2780 The Bottle Imp
ユーザー Yukino DX.Yukino DX.
提出日時 2024-06-16 22:20:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,214 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 100,664 KB
実行使用メモリ 40,464 KB
最終ジャッジ日時 2024-06-16 22:20:38
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 56 ms
12,828 KB
testcase_08 AC 55 ms
12,836 KB
testcase_09 AC 55 ms
12,960 KB
testcase_10 AC 56 ms
12,964 KB
testcase_11 AC 56 ms
12,832 KB
testcase_12 AC 96 ms
23,608 KB
testcase_13 AC 93 ms
23,576 KB
testcase_14 AC 34 ms
6,940 KB
testcase_15 AC 35 ms
6,852 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
6,856 KB
testcase_19 AC 35 ms
6,852 KB
testcase_20 AC 34 ms
6,732 KB
testcase_21 WA -
testcase_22 AC 21 ms
6,464 KB
testcase_23 AC 29 ms
6,920 KB
testcase_24 AC 46 ms
11,156 KB
testcase_25 AC 75 ms
17,684 KB
testcase_26 AC 39 ms
8,616 KB
testcase_27 AC 32 ms
7,420 KB
testcase_28 AC 31 ms
7,424 KB
testcase_29 AC 42 ms
13,276 KB
testcase_30 AC 33 ms
11,868 KB
testcase_31 AC 55 ms
11,404 KB
testcase_32 AC 22 ms
5,376 KB
testcase_33 AC 75 ms
27,820 KB
testcase_34 AC 93 ms
40,464 KB
testcase_35 AC 18 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 18 ms
5,376 KB
testcase_39 AC 56 ms
14,996 KB
testcase_40 AC 55 ms
14,996 KB
testcase_41 AC 55 ms
14,924 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include "atcoder/scc"
#include "atcoder/internal_type_traits"

using namespace std;
using namespace atcoder;

int main() {
    int n;
    cin >> n;
    vector<vector<int>> a(n);
    for (int i = 0; i < n; ++i) {
        int m;
        cin >> m;
        a[i].resize(m);
        for (int j = 0; j < m; ++j) {
            cin >> a[i][j];
            a[i][j]--; // Usize1に相当する処理
        }
    }

    scc_graph scc(n);
    for (int i = 0; i < n; ++i) {
        for (int j : a[i]) {
            scc.add_edge(i, j);
        }
    }

    auto groups = scc.scc();
    vector<int> labels(n);
    for (int i = 0; i < groups.size(); ++i) {
        for (int v : groups[i]) {
            labels[v] = i;
        }
    }

    int m = groups.size();
    vector<set<int>> g(m);
    for (int i = 0; i < n; ++i) {
        for (int j : a[i]) {
            if (labels[i] != labels[j]) {
                g[labels[i]].insert(labels[j]);
            }
        }
    }

    int crr = 0;
    while (g[crr].find(crr + 1) != g[crr].end()) {
        crr = *g[crr].find(crr + 1);
    }
    bool ans = (crr == m - 1);

    cout << (ans ? "Yes" : "No") << endl;

    return 0;
}
0