結果

問題 No.1023 Cyclic Tour
ユーザー tarattata1tarattata1
提出日時 2020-03-07 20:49:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,924 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 93,652 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-10-15 19:54:31
合計ジャッジ時間 10,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 83 ms
18,688 KB
testcase_05 AC 89 ms
18,688 KB
testcase_06 AC 102 ms
20,352 KB
testcase_07 AC 93 ms
19,328 KB
testcase_08 AC 63 ms
15,360 KB
testcase_09 AC 60 ms
14,976 KB
testcase_10 AC 57 ms
14,848 KB
testcase_11 AC 90 ms
15,744 KB
testcase_12 AC 73 ms
14,464 KB
testcase_13 AC 62 ms
13,824 KB
testcase_14 AC 50 ms
13,824 KB
testcase_15 AC 67 ms
14,080 KB
testcase_16 AC 105 ms
20,736 KB
testcase_17 AC 111 ms
21,120 KB
testcase_18 AC 120 ms
21,120 KB
testcase_19 AC 113 ms
20,608 KB
testcase_20 AC 241 ms
25,344 KB
testcase_21 AC 246 ms
25,856 KB
testcase_22 AC 212 ms
23,936 KB
testcase_23 AC 220 ms
24,064 KB
testcase_24 AC 188 ms
23,040 KB
testcase_25 AC 168 ms
25,344 KB
testcase_26 AC 179 ms
26,240 KB
testcase_27 AC 193 ms
25,216 KB
testcase_28 AC 147 ms
22,400 KB
testcase_29 AC 121 ms
21,376 KB
testcase_30 AC 139 ms
23,296 KB
testcase_31 AC 131 ms
23,168 KB
testcase_32 AC 142 ms
25,856 KB
testcase_33 AC 148 ms
25,216 KB
testcase_34 AC 166 ms
23,808 KB
testcase_35 AC 197 ms
25,600 KB
testcase_36 AC 227 ms
24,960 KB
testcase_37 AC 151 ms
25,472 KB
testcase_38 AC 129 ms
22,656 KB
testcase_39 AC 203 ms
23,424 KB
testcase_40 AC 146 ms
23,296 KB
testcase_41 AC 148 ms
23,296 KB
testcase_42 AC 173 ms
25,728 KB
testcase_43 AC 137 ms
21,248 KB
testcase_44 AC 102 ms
19,328 KB
testcase_45 AC 73 ms
25,344 KB
testcase_46 AC 67 ms
25,472 KB
testcase_47 AC 109 ms
30,208 KB
testcase_48 AC 245 ms
26,240 KB
testcase_49 AC 256 ms
26,240 KB
testcase_50 AC 250 ms
26,368 KB
testcase_51 AC 233 ms
26,240 KB
testcase_52 AC 231 ms
26,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#pragma warning(disable:4996) 

typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;

using namespace std;

vector<set<pair<int,int> > > g;     // to, directed edge
vector<int> visedge;                // visit flag for 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(make_pair(next,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 with normal direction
        if(c[i]==1) g[b[i]].insert(make_pair(a[i],i*2+1));  // i*2+1 means edge i 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