結果

問題 No.1023 Cyclic Tour
ユーザー catuppercatupper
提出日時 2020-04-10 22:57:15
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,913 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-09-15 23:22:56
合計ジャッジ時間 13,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 8 ms
11,136 KB
testcase_02 WA -
testcase_03 AC 8 ms
11,136 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 153 ms
18,048 KB
testcase_12 AC 145 ms
18,176 KB
testcase_13 AC 129 ms
17,664 KB
testcase_14 WA -
testcase_15 AC 151 ms
18,560 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 262 ms
20,864 KB
testcase_21 AC 263 ms
21,120 KB
testcase_22 AC 261 ms
21,248 KB
testcase_23 AC 286 ms
21,504 KB
testcase_24 AC 306 ms
23,040 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 257 ms
19,328 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 263 ms
18,816 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 137 ms
24,192 KB
testcase_46 WA -
testcase_47 AC 116 ms
15,744 KB
testcase_48 AC 220 ms
19,304 KB
testcase_49 AC 220 ms
19,164 KB
testcase_50 AC 215 ms
19,096 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

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<int> 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 to:edge[x]){
        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());
    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;
    cout << "Group " << g << endl;
    for(auto v:group[g]){
        cout << v << " ";
        for(auto to:edge[v]){
            if(comp[to] == g)E++;
        }
    }cout << endl;
    if(E == V+1)return false;
    return true;
}

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

    scc();

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