結果

問題 No.408 五輪ピック
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-10-18 18:11:43
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,023 bytes
コンパイル時間 1,443 ms
コンパイル使用メモリ 142,316 KB
実行使用メモリ 30,584 KB
最終ジャッジ日時 2024-06-12 04:34:55
合計ジャッジ時間 15,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1,972 ms
27,904 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 33 ms
5,376 KB
testcase_08 AC 199 ms
21,376 KB
testcase_09 AC 76 ms
10,240 KB
testcase_10 WA -
testcase_11 AC 21 ms
5,376 KB
testcase_12 AC 46 ms
7,296 KB
testcase_13 AC 1,280 ms
27,904 KB
testcase_14 WA -
testcase_15 TLE -
testcase_16 AC 728 ms
30,148 KB
testcase_17 AC 245 ms
28,524 KB
testcase_18 AC 110 ms
24,020 KB
testcase_19 AC 69 ms
10,248 KB
testcase_20 AC 10 ms
6,944 KB
testcase_21 AC 6 ms
6,940 KB
testcase_22 AC 17 ms
6,940 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.typecons;
import std.string;
import std.array;
import std.conv;
import std.container;

void main() {
    int N, M;
    readf("%d %d\n", &N, &M);
    auto G = new int[][](N);
    foreach (i; 0 .. M) {
        int a, b;
        readf("%d %d\n", &a, &b);
        a--; b--;
        G[a] ~= b;
        G[b] ~= a;
    }

    alias S = Tuple!(int, "index", int, "depth", int, "prev");
    bool[S] D;
    D[S(0, 0, -1)] = true;
    DList!S Q;
    Q.insert(S(0, 0, -1));
    while (!Q.empty) {
        auto c = Q.front; Q.removeFront;
        int v = c[0];
        int d = c[1];
        int prev = c[2];
        if (d >= 5) continue;
        foreach (nv; G[v]) {
            if (nv == prev) continue;
            int nd = d + 1;
            if (S(nv, nd, v) in D) continue;
            D[S(nv, nd, v)] = true;
            Q.insert(S(nv, nd, v));
        }
    }
    foreach (k, v; D) {
        if (k.index == 0 && k.depth == 5) {
            writeln("YES"); return;
        }
    }
    writeln("NO");
}
0