結果

問題 No.2780 The Bottle Imp
ユーザー t98slidert98slider
提出日時 2024-06-08 17:25:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,764 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 208,928 KB
実行使用メモリ 27,412 KB
最終ジャッジ日時 2024-06-08 17:25:12
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 24 ms
8,572 KB
testcase_08 AC 25 ms
8,584 KB
testcase_09 AC 25 ms
8,612 KB
testcase_10 AC 24 ms
8,456 KB
testcase_11 AC 24 ms
8,592 KB
testcase_12 AC 42 ms
13,916 KB
testcase_13 AC 41 ms
13,900 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 13 ms
5,408 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 13 ms
5,632 KB
testcase_24 AC 20 ms
7,580 KB
testcase_25 AC 34 ms
10,756 KB
testcase_26 AC 18 ms
6,912 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 18 ms
9,376 KB
testcase_30 AC 15 ms
7,960 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 26 ms
12,160 KB
testcase_42 WA -
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" << '\n';
}
0