結果

問題 No.2780 The Bottle Imp
ユーザー t98slidert98slider
提出日時 2024-06-08 17:27:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 2,756 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 208,612 KB
実行使用メモリ 27,288 KB
最終ジャッジ日時 2024-06-08 17:27:07
合計ジャッジ時間 4,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 22 ms
8,568 KB
testcase_08 AC 21 ms
8,588 KB
testcase_09 AC 20 ms
8,736 KB
testcase_10 AC 21 ms
8,584 KB
testcase_11 AC 19 ms
8,588 KB
testcase_12 AC 34 ms
13,788 KB
testcase_13 AC 34 ms
13,644 KB
testcase_14 AC 14 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 11 ms
5,504 KB
testcase_24 AC 17 ms
7,584 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 15 ms
6,912 KB
testcase_27 AC 12 ms
6,272 KB
testcase_28 AC 12 ms
6,144 KB
testcase_29 AC 14 ms
9,376 KB
testcase_30 AC 12 ms
7,956 KB
testcase_31 AC 22 ms
9,472 KB
testcase_32 AC 8 ms
5,376 KB
testcase_33 AC 34 ms
22,656 KB
testcase_34 AC 42 ms
27,288 KB
testcase_35 AC 6 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 23 ms
12,288 KB
testcase_40 AC 22 ms
12,160 KB
testcase_41 AC 21 ms
12,160 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define PROBLEM "https://yukicoder.me/problems/no/2780"

#include <bits/stdc++.h>
struct SCC {
    int n, group_num;
    std::vector<std::vector<int>> &g;
    std::vector<int> ids;
    SCC(std::vector<std::vector<int>> &_g) : n(_g.size()), g(_g), ids(n), group_num(0) {
        int now_ord = 0;
        std::vector<int> visited, low(n), ord(n, -1);
        visited.reserve(n);
        auto dfs = [&](auto self, int v) -> void {
            low[v] = ord[v] = now_ord++;
            visited.emplace_back(v);
            for(auto to : g[v]) {
                if (ord[to] == -1) {
                    self(self, to);
                    low[v] = std::min(low[v], low[to]);
                } else {
                    low[v] = std::min(low[v], ord[to]);
                }
            }
            if (low[v] == ord[v]) {
                while (true) {
                    int u = visited.back();
                    visited.pop_back();
                    ord[u] = n;
                    ids[u] = group_num;
                    if (u == v) break;
                }
                group_num++;
            }
        };
        for (int i = 0; i < n; i++) {
            if (ord[i] == -1) dfs(dfs, i);
        }
        for (auto& x : ids) {
            x = group_num - 1 - x;
        }
    }
    const int operator[](int p) const {
        assert(0 <= p && p < n);
        return ids[p];
    }
    int operator[](int p) { 
        assert(0 <= p && p < n);
        return ids[p];
    }
    std::vector<std::vector<int>> groups(){
        std::vector<int> counts(group_num);
        for (auto x : ids) counts[x]++;
        std::vector<std::vector<int>> groups(group_num);
        for (int i = 0; i < group_num; i++) {
            groups[i].reserve(counts[i]);
        }
        for (int i = 0; i < n; i++) {
            groups[ids[i]].emplace_back(i);
        }
        return groups;
    }
};
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<vector<int>> g(n);
    for(int i = 0; i < n; i++){
        int m;
        cin >> m;
        g[i].resize(m);
        for(auto &&v : g[i]){
            cin >> v;
            v--;
        }
    }
    SCC scc(g);
    auto G = scc.groups();
    if(find(G[0].begin(), G[0].end(), 0) == G[0].end()){
        cout << "No\n";
        return 0;
    }
    vector<int> dp(G.size());
    for(int i = 0; i < G.size(); i++){
        const int id = scc[G[i][0]];
        if(dp[id] != i){
            cout << "No\n";
            return 0;
        }
        for(auto &&v : G[i]){
            for(auto &&u : g[v]){
                if(scc[u] == id) continue;
                dp[scc[u]] = max(dp[scc[u]], dp[id] + 1);
            }
        }
    }
    cout << "Yes\n";
}
0