結果

問題 No.1023 Cyclic Tour
ユーザー nebukuro09nebukuro09
提出日時 2020-04-10 22:53:58
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 114,836 KB
実行使用メモリ 23,228 KB
最終ジャッジ日時 2024-06-22 06:34:37
合計ジャッジ時間 11,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 119 ms
12,176 KB
testcase_05 AC 118 ms
12,092 KB
testcase_06 AC 128 ms
13,428 KB
testcase_07 AC 124 ms
12,160 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 106 ms
13,328 KB
testcase_12 AC 101 ms
12,176 KB
testcase_13 AC 88 ms
13,032 KB
testcase_14 WA -
testcase_15 AC 94 ms
12,052 KB
testcase_16 AC 186 ms
13,324 KB
testcase_17 AC 177 ms
12,876 KB
testcase_18 AC 193 ms
12,056 KB
testcase_19 AC 178 ms
12,196 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 207 ms
12,840 KB
testcase_23 WA -
testcase_24 AC 213 ms
12,816 KB
testcase_25 AC 223 ms
13,640 KB
testcase_26 AC 219 ms
12,152 KB
testcase_27 AC 208 ms
23,228 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 212 ms
12,232 KB
testcase_34 AC 211 ms
13,016 KB
testcase_35 AC 232 ms
12,188 KB
testcase_36 WA -
testcase_37 AC 199 ms
12,172 KB
testcase_38 WA -
testcase_39 AC 196 ms
12,272 KB
testcase_40 AC 204 ms
13,160 KB
testcase_41 WA -
testcase_42 AC 215 ms
12,312 KB
testcase_43 WA -
testcase_44 AC 122 ms
13,184 KB
testcase_45 AC 108 ms
20,500 KB
testcase_46 AC 111 ms
21,864 KB
testcase_47 AC 116 ms
20,804 KB
testcase_48 WA -
testcase_49 AC 207 ms
13,352 KB
testcase_50 WA -
testcase_51 AC 213 ms
13,036 KB
testcase_52 AC 221 ms
12,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdlib;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto M = s[1];
    auto G = new int[][](N);
    foreach (i; 0..M) {
        s = readln.split.map!(to!int);
        auto u = s[0] - 1;
        auto v = s[1] - 1;
        auto c = s[2];
        G[u] ~= v;
        if (c == 1) G[v] ~= u;
    }

    auto visited = new bool[](N);

    bool dfs(int n, int p) {
        if (visited[n]) return true;
        visited[n] = true;
        foreach (m; G[n]) {
            if (p == m) continue;
            if (dfs(m, n)) return true;
        }
        return false;
    }

    writeln(dfs(0, -1) ? "Yes" : "No");
}
0