結果

問題 No.2780 The Bottle Imp
ユーザー ttkkggwwttkkggww
提出日時 2024-06-07 22:09:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,225 bytes
コンパイル時間 4,292 ms
コンパイル使用メモリ 269,700 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-06-08 10:30:42
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 24 ms
9,276 KB
testcase_08 AC 24 ms
9,400 KB
testcase_09 AC 24 ms
9,272 KB
testcase_10 AC 23 ms
9,276 KB
testcase_11 AC 23 ms
9,276 KB
testcase_12 AC 40 ms
14,792 KB
testcase_13 AC 39 ms
14,528 KB
testcase_14 AC 14 ms
6,884 KB
testcase_15 AC 14 ms
6,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 15 ms
6,884 KB
testcase_19 AC 15 ms
6,760 KB
testcase_20 AC 15 ms
6,884 KB
testcase_21 WA -
testcase_22 AC 10 ms
5,844 KB
testcase_23 AC 13 ms
6,820 KB
testcase_24 AC 19 ms
8,488 KB
testcase_25 AC 32 ms
11,572 KB
testcase_26 AC 19 ms
8,128 KB
testcase_27 AC 16 ms
7,444 KB
testcase_28 AC 16 ms
7,440 KB
testcase_29 AC 19 ms
10,484 KB
testcase_30 AC 16 ms
8,308 KB
testcase_31 AC 31 ms
11,424 KB
testcase_32 AC 10 ms
5,376 KB
testcase_33 AC 43 ms
27,872 KB
testcase_34 AC 54 ms
31,300 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 9 ms
5,376 KB
testcase_39 AC 28 ms
15,016 KB
testcase_40 AC 30 ms
15,024 KB
testcase_41 AC 30 ms
15,020 KB
testcase_42 AC 2 ms
5,376 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