結果

問題 No.408 五輪ピック
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-10-18 21:47:24
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 1,146 bytes
コンパイル時間 964 ms
コンパイル使用メモリ 96,336 KB
実行使用メモリ 12,664 KB
最終ジャッジ日時 2024-06-12 04:36:37
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,948 KB
testcase_05 AC 23 ms
6,940 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 38 ms
6,944 KB
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 17 ms
6,944 KB
testcase_10 AC 24 ms
6,944 KB
testcase_11 AC 33 ms
6,940 KB
testcase_12 AC 51 ms
6,940 KB
testcase_13 AC 22 ms
6,940 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 24 ms
6,940 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 23 ms
6,944 KB
testcase_19 AC 36 ms
6,944 KB
testcase_20 AC 8 ms
6,944 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 13 ms
6,940 KB
testcase_23 AC 24 ms
6,944 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
    int[] zero_n;
    foreach (i; 0 .. M) {
        int a, b;
        scanf("%d %d\n", &a, &b);
        a--; b--;
        if (a > b) swap(a, b);
        if (a == 0) zero_n ~= b;
        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;
    }


    foreach (e; es1) {
        bool a = false, b = false;
        int c = 0;
        foreach (i; zero_n) {
            if (i == e[0] || i == e[1]) continue;
            bool flag = false;
            if (f(e[0], i)) {
                a = true;
                flag =true;
            }
            if (f(e[1], i)) {
                b = true;
                flag = true;
            }
            c += flag;
        }
        if (c >= 2 && a && b) {
            writeln("YES");
            return;
        }
    }
    writeln("NO");

}
0