結果

問題 No.1023 Cyclic Tour
ユーザー tarattata1tarattata1
提出日時 2020-03-08 10:38:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,558 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 62,592 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-11-06 21:16:50
合計ジャッジ時間 10,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 79 ms
18,580 KB
testcase_05 AC 84 ms
18,564 KB
testcase_06 AC 90 ms
20,336 KB
testcase_07 AC 82 ms
19,416 KB
testcase_08 AC 58 ms
15,288 KB
testcase_09 AC 55 ms
15,012 KB
testcase_10 AC 52 ms
14,788 KB
testcase_11 AC 83 ms
15,808 KB
testcase_12 AC 66 ms
14,560 KB
testcase_13 AC 57 ms
13,684 KB
testcase_14 AC 47 ms
13,700 KB
testcase_15 AC 67 ms
14,212 KB
testcase_16 AC 102 ms
20,744 KB
testcase_17 AC 106 ms
21,048 KB
testcase_18 AC 109 ms
21,024 KB
testcase_19 AC 104 ms
20,392 KB
testcase_20 AC 219 ms
25,376 KB
testcase_21 AC 233 ms
25,776 KB
testcase_22 AC 195 ms
23,844 KB
testcase_23 AC 195 ms
24,260 KB
testcase_24 AC 172 ms
22,860 KB
testcase_25 AC 161 ms
25,312 KB
testcase_26 AC 174 ms
25,888 KB
testcase_27 AC 183 ms
24,912 KB
testcase_28 AC 143 ms
22,428 KB
testcase_29 AC 112 ms
21,408 KB
testcase_30 AC 136 ms
23,348 KB
testcase_31 AC 124 ms
22,884 KB
testcase_32 AC 136 ms
24,152 KB
testcase_33 AC 139 ms
24,468 KB
testcase_34 AC 151 ms
23,804 KB
testcase_35 AC 185 ms
25,756 KB
testcase_36 AC 209 ms
24,880 KB
testcase_37 AC 134 ms
24,496 KB
testcase_38 AC 108 ms
21,872 KB
testcase_39 AC 178 ms
23,492 KB
testcase_40 AC 128 ms
23,148 KB
testcase_41 AC 138 ms
23,212 KB
testcase_42 AC 159 ms
25,804 KB
testcase_43 AC 132 ms
21,084 KB
testcase_44 AC 95 ms
19,100 KB
testcase_45 AC 53 ms
20,764 KB
testcase_46 AC 55 ms
20,924 KB
testcase_47 AC 92 ms
25,508 KB
testcase_48 AC 218 ms
26,208 KB
testcase_49 AC 238 ms
26,364 KB
testcase_50 AC 229 ms
26,332 KB
testcase_51 AC 205 ms
26,368 KB
testcase_52 AC 214 ms
26,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <set>
#pragma warning(disable:4996) 

using namespace std;

vector<set<pair<int,int> > > g;     // target vertex, directed edge
vector<int> visedge;                // visit flag for each directed edge

bool dfs(int paredge, int curr)
{
    auto it=g[curr].begin();
    while(it!=g[curr].end()) {
        int next=it->first;
        int edge=it->second;
        if(edge/2==paredge/2) {
            ++it;
            continue;
        }
        if(visedge[edge]) {
            return true;
        }
        visedge[edge]=1;
        if (dfs(edge, next)) {
            return true;
        }
        it=g[curr].erase(it++);     // erase finished edge
    }
    return false;
}

void solve(int n, int m, const vector<int>& a, const vector<int>& b, const vector<int> c)
{
    g.resize(n);
    visedge.resize(m*2);
    int i;
    for(i=0; i<m; i++) {
        g[a[i]].insert(make_pair(b[i],i*2));         // i*2   means edge i (0-indexed) with normal direction
        if(c[i]==1) {
            g[b[i]].insert(make_pair(a[i],i*2+1));   // i*2+1 means edge i (0-indexed) with reversed direction
        }
    }
    for(i=0; i<n; i++) {
        bool ret=dfs(-100, i);
        if(ret){
            printf("Yes\n"); return;
        }
    }
    printf("No\n");
    return;
}

int main(int argc, char* argv[])
{
    int n,m;
    scanf("%d%d", &n, &m);
    vector<int> a(m),b(m),c(m);
    int i;
    for(i=0; i<m; i++) {
        scanf("%d%d%d", &a[i], &b[i], &c[i]); a[i]--; b[i]--;
    }
	solve(n, m, a, b, c);

	return 0;
}
0