結果

問題 No.408 五輪ピック
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-10-18 22:55:05
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,509 ms / 5,000 ms
コード長 1,438 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 97,468 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-12 04:37:24
合計ジャッジ時間 8,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 46 ms
7,424 KB
testcase_06 AC 28 ms
5,376 KB
testcase_07 AC 46 ms
6,656 KB
testcase_08 AC 34 ms
6,784 KB
testcase_09 AC 34 ms
6,528 KB
testcase_10 AC 31 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 55 ms
7,296 KB
testcase_13 AC 47 ms
7,424 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 49 ms
7,296 KB
testcase_16 AC 47 ms
7,680 KB
testcase_17 AC 50 ms
7,808 KB
testcase_18 AC 52 ms
7,680 KB
testcase_19 AC 52 ms
7,808 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 22 ms
5,376 KB
testcase_23 AC 48 ms
7,936 KB
testcase_24 AC 35 ms
7,296 KB
testcase_25 AC 340 ms
7,552 KB
testcase_26 AC 63 ms
7,424 KB
testcase_27 AC 1,371 ms
7,552 KB
testcase_28 AC 771 ms
7,168 KB
testcase_29 AC 2,509 ms
7,296 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main() {
    int N, M;
    scanf("%d %d\n", &N, &M);
    alias E = Tuple!(int, int);
    bool[E] es;
    E[] es1;
    bool[int] zero_n;
    auto G = new int[][](N);
    foreach (i; 0 .. M) {
        int a, b;
        scanf("%d %d\n", &a, &b);
        a--; b--;
        G[a] ~= b;
        G[b] ~= a;
        if (a > b) swap(a, b);
        if (a == 0) zero_n[b] = true;
        else es1 ~= E(a, b);
        es[E(a, b)] = true;
    }

    bool f(int a, int b) {
        if (a > b) swap(a, b);
        return E(a, b) in es ? true : false;
    }

    const int INF = int.max / 2;

    foreach (e; es1) {
        int a = -1, b = -1;
        int c = 0;
        foreach (i; G[e[0]]) {
            if (i !in zero_n) continue;
            if (i == e[1]) continue;
            if (f(e[0], i)) {
                if (a < 0) a = i;
                else a = INF;
            }
        }
        foreach (i; G[e[1]]) {
            if (i !in zero_n) continue;
            if (i == e[0]) continue;
            if (f(e[1], i)) {
                if (b < 0) b = i;
                else b = INF;
            }
        }

        if (a >= 0 && b >= 0) {
            if ( (a == INF || b == INF) || (a != b) ) {
                writeln("YES");
                return;
            }
        }
    }
    writeln("NO");

}
0