結果

問題 No.2780 The Bottle Imp
ユーザー Yukino DX.Yukino DX.
提出日時 2024-06-16 22:35:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 100,716 KB
実行使用メモリ 40,488 KB
最終ジャッジ日時 2024-06-16 22:35:33
合計ジャッジ時間 5,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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,960 KB
testcase_08 AC 55 ms
12,960 KB
testcase_09 AC 55 ms
12,964 KB
testcase_10 AC 56 ms
12,960 KB
testcase_11 AC 56 ms
12,960 KB
testcase_12 AC 94 ms
23,600 KB
testcase_13 AC 94 ms
23,720 KB
testcase_14 AC 34 ms
6,856 KB
testcase_15 AC 35 ms
6,852 KB
testcase_16 AC 34 ms
6,856 KB
testcase_17 AC 34 ms
6,916 KB
testcase_18 AC 35 ms
6,856 KB
testcase_19 AC 34 ms
6,732 KB
testcase_20 AC 34 ms
6,988 KB
testcase_21 AC 34 ms
6,856 KB
testcase_22 AC 21 ms
6,360 KB
testcase_23 AC 29 ms
6,792 KB
testcase_24 AC 47 ms
11,280 KB
testcase_25 AC 76 ms
17,692 KB
testcase_26 AC 39 ms
8,612 KB
testcase_27 AC 32 ms
7,416 KB
testcase_28 AC 31 ms
7,420 KB
testcase_29 AC 41 ms
13,148 KB
testcase_30 AC 33 ms
11,872 KB
testcase_31 AC 55 ms
11,528 KB
testcase_32 AC 22 ms
5,376 KB
testcase_33 AC 75 ms
27,816 KB
testcase_34 AC 95 ms
40,488 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 19 ms
5,376 KB
testcase_39 AC 55 ms
14,992 KB
testcase_40 AC 56 ms
15,252 KB
testcase_41 AC 56 ms
15,000 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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 = labels[0];
    int cnt = 1;
    while (g[crr].find(crr + 1) != g[crr].end()) {
        crr = *g[crr].find(crr + 1);
        cnt++;
    }
    bool ans = (cnt == m);

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

    return 0;
}
0