結果

問題 No.1023 Cyclic Tour
ユーザー catuppercatupper
提出日時 2020-04-10 23:05:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 2,027 bytes
コンパイル時間 1,177 ms
コンパイル使用メモリ 79,864 KB
実行使用メモリ 27,716 KB
最終ジャッジ日時 2024-09-15 23:45:40
合計ジャッジ時間 14,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,136 KB
testcase_01 AC 8 ms
11,136 KB
testcase_02 AC 7 ms
11,264 KB
testcase_03 AC 8 ms
11,264 KB
testcase_04 AC 168 ms
21,264 KB
testcase_05 AC 175 ms
21,312 KB
testcase_06 AC 198 ms
23,360 KB
testcase_07 AC 181 ms
22,236 KB
testcase_08 AC 151 ms
19,936 KB
testcase_09 AC 152 ms
19,532 KB
testcase_10 AC 145 ms
19,720 KB
testcase_11 AC 170 ms
20,172 KB
testcase_12 AC 140 ms
20,076 KB
testcase_13 AC 132 ms
19,480 KB
testcase_14 AC 130 ms
19,396 KB
testcase_15 AC 136 ms
19,692 KB
testcase_16 AC 256 ms
22,664 KB
testcase_17 AC 256 ms
22,756 KB
testcase_18 AC 259 ms
22,508 KB
testcase_19 AC 248 ms
22,332 KB
testcase_20 AC 303 ms
23,264 KB
testcase_21 AC 304 ms
23,612 KB
testcase_22 AC 290 ms
22,776 KB
testcase_23 AC 302 ms
22,776 KB
testcase_24 AC 286 ms
23,128 KB
testcase_25 AC 289 ms
23,140 KB
testcase_26 AC 280 ms
23,848 KB
testcase_27 AC 254 ms
23,340 KB
testcase_28 AC 269 ms
22,700 KB
testcase_29 AC 259 ms
22,376 KB
testcase_30 AC 294 ms
23,068 KB
testcase_31 AC 272 ms
22,940 KB
testcase_32 AC 267 ms
24,188 KB
testcase_33 AC 292 ms
23,816 KB
testcase_34 AC 279 ms
22,296 KB
testcase_35 AC 301 ms
23,548 KB
testcase_36 AC 291 ms
23,072 KB
testcase_37 AC 267 ms
23,864 KB
testcase_38 AC 248 ms
22,920 KB
testcase_39 AC 287 ms
22,484 KB
testcase_40 AC 276 ms
22,592 KB
testcase_41 AC 285 ms
22,488 KB
testcase_42 AC 300 ms
23,488 KB
testcase_43 AC 248 ms
22,200 KB
testcase_44 AC 169 ms
21,228 KB
testcase_45 AC 149 ms
27,716 KB
testcase_46 AC 135 ms
25,408 KB
testcase_47 AC 153 ms
26,968 KB
testcase_48 AC 229 ms
23,528 KB
testcase_49 AC 229 ms
22,940 KB
testcase_50 AC 225 ms
23,548 KB
testcase_51 AC 228 ms
23,652 KB
testcase_52 AC 236 ms
23,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cassert>
#include<cmath>
#include<vector>
#include<map>
#include<set>
#include<string>
#include<queue>
#include<stack>
using namespace std;
#define MOD 1000000007
#define MOD2 998244353
#define INF ((1<<30)-1)
#define LINF (1LL<<60)
#define EPS (1e-10)
typedef long long Int;
typedef pair<Int, Int> P;


int n, m;
vector<P> edge[110000];
vector<int> rev[110000];
vector<int> group[110000];
int a, b, c;
bool done[110000];
Int comp[110000];
vector<int> nodes;

void dfs(int x, int last = -1){
    if(done[x])return;
    done[x] = true;
    for(auto p:edge[x]){
        int to = p.first;
        if(to == last)continue;
        dfs(to, x);
    }
    nodes.push_back(x);
}

void dfs2(int x, int g, int last = -1){
    if(done[x])return;
    done[x] = true;
    group[g].push_back(x);
    comp[x] = g;
    for(auto to:rev[x]){
        if(to == last)continue;
        dfs2(to, g, x);        
    }
}

void scc(){
    for(int i = 1;i <= n;i++){
        dfs(i);
    }
    reverse(nodes.begin(), nodes.end());
    fill(done, done + n + 1, false);
    for(auto node:nodes){
        if(!done[node])
            dfs2(node, node);
    }
}

void ok(){
    cout << "Yes" << endl;
    exit(0);
}

void ng(){
    cout <<  "No" << endl;
    exit(0);
}

bool check(int g){
    int V = group[g].size();
    if(V == 0)return false;
    int E = 0;
    for(auto v:group[g]){
        for(auto p:edge[v]){
            if(p.second == -1)continue;
            int to = p.first;
            if(comp[to] == g)E++;
        }
    }
//    cout << g << " " << V << " " << E << endl;
    if(E+1 == V)return false;
    return true;
}

int main(){
    cin >> n >> m;
    for(int i = 0;i < m;i++){
        cin >> a >> b >> c;
        edge[a].push_back(P(b,c));
        rev[b].push_back(a);
        if(c==1){
            edge[b].push_back(P(a,-1));
            rev[a].push_back(b);
        }
    }

    scc();

    for(int i = 1;i <= n;i++){
        if(check(i))ok();
    }
    ng();
    return 0;
}
0