結果

問題 No.1023 Cyclic Tour
ユーザー ngtkanangtkana
提出日時 2020-04-10 22:56:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,144 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 212,636 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-09-15 23:20:54
合計ジャッジ時間 11,749 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 88 ms
23,296 KB
testcase_05 AC 88 ms
23,296 KB
testcase_06 AC 104 ms
25,472 KB
testcase_07 AC 96 ms
24,192 KB
testcase_08 AC 65 ms
19,072 KB
testcase_09 AC 64 ms
18,688 KB
testcase_10 AC 62 ms
18,560 KB
testcase_11 AC 99 ms
19,456 KB
testcase_12 AC 80 ms
17,792 KB
testcase_13 AC 75 ms
16,896 KB
testcase_14 WA -
testcase_15 AC 78 ms
17,280 KB
testcase_16 AC 111 ms
23,424 KB
testcase_17 AC 114 ms
23,680 KB
testcase_18 AC 120 ms
23,680 KB
testcase_19 AC 114 ms
22,912 KB
testcase_20 AC 229 ms
29,056 KB
testcase_21 AC 223 ms
29,696 KB
testcase_22 AC 200 ms
27,392 KB
testcase_23 AC 204 ms
27,264 KB
testcase_24 AC 183 ms
25,600 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 175 ms
28,416 KB
testcase_28 AC 143 ms
25,216 KB
testcase_29 AC 123 ms
23,936 KB
testcase_30 AC 139 ms
26,368 KB
testcase_31 AC 129 ms
26,240 KB
testcase_32 AC 139 ms
27,392 KB
testcase_33 WA -
testcase_34 AC 154 ms
27,264 KB
testcase_35 AC 170 ms
29,568 KB
testcase_36 AC 216 ms
28,416 KB
testcase_37 AC 146 ms
28,032 KB
testcase_38 AC 123 ms
24,576 KB
testcase_39 AC 194 ms
26,368 KB
testcase_40 AC 140 ms
26,368 KB
testcase_41 AC 142 ms
26,496 KB
testcase_42 WA -
testcase_43 AC 50 ms
16,256 KB
testcase_44 WA -
testcase_45 AC 86 ms
26,624 KB
testcase_46 AC 69 ms
26,752 KB
testcase_47 AC 125 ms
31,360 KB
testcase_48 AC 248 ms
28,784 KB
testcase_49 AC 277 ms
29,268 KB
testcase_50 AC 247 ms
28,960 KB
testcase_51 AC 202 ms
29,164 KB
testcase_52 AC 188 ms
29,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
using lint=long long;
using ld=long double;
void yes(){
    std::cout<<"Yes"<<'\n';
    exit(0);
}
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,m;std::cin>>n>>m;
    std::vector<std::vector<lint>>g(n);
    std::vector<std::set<lint>>sets(n);
    while(m--){
        lint u,v,c;std::cin>>u>>v>>c;u--,v--;
        if(sets.at(u).count(v)||c==1&&sets.at(v).count(u))yes();
        g.at(u).push_back(v);
        sets.at(u).insert(v);
        if(c==1){
            g.at(v).push_back(u);
            sets.at(v).insert(u);
        }
    }
    std::vector<lint>ckd(n,0);
    auto dfs=[&](auto&&f,lint x,lint p)->void{
        ckd.at(x)=1;
        for(lint y:g.at(x)){
            if(y==p)continue;
            if(ckd.at(y)==1)yes();
            if(ckd.at(y)==2)continue;
            f(f,y,x);
        }
        ckd.at(x)=2;
    };
    for(lint i=0;i<n;i++){
        assert(ckd.at(i)!=1);
        if(ckd.at(i)==2)continue;
        dfs(dfs,i,i);
    }
    std::cout<<"No"<<'\n';
}
0