結果

問題 No.1023 Cyclic Tour
ユーザー chocoruskchocorusk
提出日時 2020-03-08 02:51:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,327 bytes
コンパイル時間 1,341 ms
コンパイル使用メモリ 86,112 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-10-15 19:56:49
合計ジャッジ時間 16,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,504 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,632 KB
testcase_04 AC 40 ms
10,752 KB
testcase_05 AC 42 ms
10,752 KB
testcase_06 AC 49 ms
11,264 KB
testcase_07 AC 44 ms
10,880 KB
testcase_08 AC 40 ms
9,600 KB
testcase_09 AC 37 ms
9,496 KB
testcase_10 AC 38 ms
9,728 KB
testcase_11 AC 64 ms
9,856 KB
testcase_12 AC 52 ms
9,472 KB
testcase_13 AC 47 ms
9,216 KB
testcase_14 AC 37 ms
9,344 KB
testcase_15 AC 48 ms
9,472 KB
testcase_16 AC 67 ms
11,656 KB
testcase_17 AC 67 ms
11,648 KB
testcase_18 AC 68 ms
12,032 KB
testcase_19 AC 65 ms
11,776 KB
testcase_20 AC 150 ms
13,536 KB
testcase_21 AC 147 ms
13,436 KB
testcase_22 AC 136 ms
12,808 KB
testcase_23 AC 135 ms
12,924 KB
testcase_24 AC 115 ms
12,672 KB
testcase_25 AC 83 ms
13,184 KB
testcase_26 AC 82 ms
13,964 KB
testcase_27 AC 111 ms
13,520 KB
testcase_28 AC 80 ms
12,416 KB
testcase_29 AC 67 ms
12,160 KB
testcase_30 AC 77 ms
12,672 KB
testcase_31 AC 72 ms
12,996 KB
testcase_32 AC 79 ms
15,168 KB
testcase_33 AC 75 ms
13,756 KB
testcase_34 AC 83 ms
12,920 KB
testcase_35 AC 97 ms
13,440 KB
testcase_36 AC 141 ms
13,184 KB
testcase_37 AC 77 ms
14,520 KB
testcase_38 AC 72 ms
13,120 KB
testcase_39 AC 134 ms
12,792 KB
testcase_40 AC 78 ms
12,672 KB
testcase_41 AC 81 ms
12,672 KB
testcase_42 AC 79 ms
13,632 KB
testcase_43 AC 69 ms
12,004 KB
testcase_44 AC 48 ms
11,264 KB
testcase_45 AC 60 ms
16,256 KB
testcase_46 AC 47 ms
17,920 KB
testcase_47 AC 82 ms
17,792 KB
testcase_48 AC 1,920 ms
12,656 KB
testcase_49 AC 1,921 ms
12,928 KB
testcase_50 AC 1,919 ms
12,700 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <vector>
#include <algorithm>
#include <random>
#include <chrono>
using namespace std;
using P=pair<int, int>;
int n, m;
int a[200020], b[200020], c[200020];
vector<P> g[100010];
bool used[400040], finish[400040], ok;
chrono::system_clock::time_point start, ed;
void dfs(int x, int prev){
	for(auto p:g[x]){
        if(ok) return;
        ed = chrono::system_clock::now();
        double time = static_cast<double>(chrono::duration_cast<chrono::microseconds>(ed - start).count() / 1000.0);
        if(time>1900) return;
        int y=p.first, i=p.second;
        if(finish[i] || abs(i-prev)==m) continue;
		if(used[i]){
            ok=1;
            return;
		}else{
            used[i]=1;
            dfs(y, i);
        }
        finish[i]=1;
	}
}
int main()
{
    start = chrono::system_clock::now();
    scanf("%d %d", &n, &m);
	for(int i=0; i<m; i++){
		scanf("%d %d %d", &a[i], &b[i], &c[i]);
		a[i]--; b[i]--;
        g[a[i]].push_back({b[i], i});
        if(c[i]==1) g[b[i]].push_back({a[i], i+m});
	}
    vector<int> ind(n);
    mt19937 mt(334);
    iota(ind.begin(), ind.end(), 0);
    shuffle(ind.begin(), ind.end(), mt);
    for(auto i:ind){
        dfs(i, 1000000007);
        if(ok){
            printf("Yes\n");
            return 0;
        }
    }
    printf("No\n");
    return 0;
}
0