結果

問題 No.2780 The Bottle Imp
ユーザー ttkkggwwttkkggww
提出日時 2024-06-07 22:09:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,225 bytes
コンパイル時間 4,848 ms
コンパイル使用メモリ 270,088 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-12-27 13:49:37
合計ジャッジ時間 7,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 29 ms
9,400 KB
testcase_08 AC 26 ms
9,400 KB
testcase_09 AC 26 ms
9,276 KB
testcase_10 AC 25 ms
9,400 KB
testcase_11 AC 29 ms
9,316 KB
testcase_12 AC 45 ms
14,660 KB
testcase_13 AC 44 ms
14,528 KB
testcase_14 AC 17 ms
6,884 KB
testcase_15 AC 16 ms
6,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 16 ms
6,820 KB
testcase_19 AC 17 ms
6,752 KB
testcase_20 AC 16 ms
6,628 KB
testcase_21 WA -
testcase_22 AC 11 ms
5,712 KB
testcase_23 AC 15 ms
6,816 KB
testcase_24 AC 21 ms
8,356 KB
testcase_25 AC 34 ms
11,572 KB
testcase_26 AC 20 ms
8,128 KB
testcase_27 AC 17 ms
7,444 KB
testcase_28 AC 17 ms
7,440 KB
testcase_29 AC 20 ms
10,484 KB
testcase_30 AC 17 ms
8,308 KB
testcase_31 AC 33 ms
11,300 KB
testcase_32 AC 11 ms
5,248 KB
testcase_33 AC 46 ms
27,716 KB
testcase_34 AC 54 ms
31,300 KB
testcase_35 AC 9 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 10 ms
5,248 KB
testcase_39 AC 30 ms
14,896 KB
testcase_40 AC 32 ms
14,788 KB
testcase_41 AC 33 ms
14,888 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
int N;
vector<vector<int>> G;

void solve(){
    scc_graph SCC(N);
    for(int i = 0;i<N;i++){
        for(int j = 0;j<G[i].size();j++){
            SCC.add_edge(i,G[i][j]);
        }
    }
    auto vv = SCC.scc();
    bool flg = true;
    for(int i = 0;i<vv.size()-1;i++){
        sort(vv[i].begin(),vv[i].end());
        sort(vv[i+1].begin(),vv[i+1].end());
        bool is = false;
        for(int j = 0;j<vv[i].size();j++){
            for(auto &to:G[vv[i][j]]){
                if(binary_search(vv[i+1].begin(),vv[i+1].end(),to)){
                    is = true;
                    break;
                }
            }
        }
        if(is==false){
            flg = false;
            break;
        }
    }
    if(flg){
        cout<<"Yes"<<endl;
    }
    else{
        cout<<"No"<<endl;
    }
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> N;
    G.resize(N);
    for(int i = 0;i<N;i++){
        int m;
        cin >> m;
        G[i].resize(m);
        for(int j = 0;j<m;j++){
            cin >> G[i][j];
            G[i][j]--;
        }
    }
    solve();
}
0