結果

問題 No.1023 Cyclic Tour
ユーザー ngtkanangtkana
提出日時 2020-04-11 14:17:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 1,664 bytes
コンパイル時間 2,678 ms
コンパイル使用メモリ 210,548 KB
実行使用メモリ 18,228 KB
最終ジャッジ日時 2024-09-19 00:38:26
合計ジャッジ時間 8,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 51 ms
9,856 KB
testcase_05 AC 49 ms
9,856 KB
testcase_06 AC 60 ms
10,496 KB
testcase_07 AC 58 ms
10,112 KB
testcase_08 AC 50 ms
10,248 KB
testcase_09 AC 48 ms
9,880 KB
testcase_10 AC 46 ms
9,920 KB
testcase_11 AC 55 ms
10,416 KB
testcase_12 AC 51 ms
10,508 KB
testcase_13 AC 48 ms
10,096 KB
testcase_14 AC 42 ms
10,196 KB
testcase_15 AC 54 ms
10,440 KB
testcase_16 AC 77 ms
13,096 KB
testcase_17 AC 78 ms
13,428 KB
testcase_18 AC 78 ms
13,128 KB
testcase_19 AC 76 ms
12,940 KB
testcase_20 AC 97 ms
11,132 KB
testcase_21 AC 97 ms
11,348 KB
testcase_22 AC 95 ms
11,900 KB
testcase_23 AC 98 ms
12,376 KB
testcase_24 AC 100 ms
12,392 KB
testcase_25 AC 96 ms
11,152 KB
testcase_26 AC 97 ms
11,100 KB
testcase_27 AC 95 ms
10,840 KB
testcase_28 AC 87 ms
11,880 KB
testcase_29 AC 80 ms
12,588 KB
testcase_30 AC 90 ms
12,368 KB
testcase_31 AC 86 ms
12,148 KB
testcase_32 AC 85 ms
13,248 KB
testcase_33 AC 92 ms
12,520 KB
testcase_34 AC 75 ms
10,968 KB
testcase_35 AC 81 ms
11,348 KB
testcase_36 AC 102 ms
11,392 KB
testcase_37 AC 90 ms
11,764 KB
testcase_38 AC 77 ms
12,456 KB
testcase_39 AC 94 ms
11,908 KB
testcase_40 AC 90 ms
11,836 KB
testcase_41 AC 87 ms
11,824 KB
testcase_42 AC 93 ms
11,292 KB
testcase_43 AC 67 ms
11,652 KB
testcase_44 AC 59 ms
9,728 KB
testcase_45 AC 54 ms
17,972 KB
testcase_46 AC 46 ms
18,228 KB
testcase_47 AC 65 ms
17,280 KB
testcase_48 AC 75 ms
11,748 KB
testcase_49 AC 75 ms
11,744 KB
testcase_50 AC 74 ms
11,660 KB
testcase_51 AC 73 ms
11,752 KB
testcase_52 AC 80 ms
11,672 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::pair<lint,lint>>arrows;
    std::vector<std::vector<lint>>g(n);
    while(m--){
        lint u,v,c;std::cin>>u>>v>>c;u--,v--;
        if(c==1){
            g.at(u).push_back(v);
            g.at(v).push_back(u);
        }
        if(c==2){
            arrows.emplace_back(u,v);
        }
    }
    lint sz=0;
    std::vector<lint>cmp(n,-1);
    auto dfs=[&](auto&&f,lint x, lint p)->void{
        for(lint y:g.at(x)){
            if(y==p)continue;
            if(cmp.at(y)!=-1){
                assert(cmp.at(x)==cmp.at(y));
                yes();
            }
            cmp.at(y)=cmp.at(x);
            f(f,y,x);
        }
    };
    for(lint i=0;i<n;i++){
        if(cmp.at(i)!=-1)continue;
        cmp.at(i)=sz++;
        dfs(dfs,i,i);
    }
    g=std::vector<std::vector<lint>>(sz);
    for(auto[u,v]:arrows){
        u=cmp.at(u),v=cmp.at(v);
        if(u==v)yes();
        g.at(u).push_back(v);
    }
    std::vector<lint>ckd(sz);
    auto efs=[&](auto&&f,lint x)->void{
        ckd.at(x)=1;
        for(lint y:g.at(x)){
            if(ckd.at(y)==1)yes();
            if(ckd.at(y)==2)continue;
            f(f,y);
        }
        ckd.at(x)=2;
    };
    for(lint i=0;i<sz;i++){
        assert(ckd.at(i)!=1);
        if(ckd.at(i)==2)continue;
        efs(efs,i);
    }
    std::cout<<"No"<<'\n';
}
0