結果

問題 No.408 五輪ピック
ユーザー rpy3cpprpy3cpp
提出日時 2016-08-06 01:00:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 330 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,640 KB
最終ジャッジ日時 2024-11-07 00:42:39
合計ジャッジ時間 6,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 253 ms
21,120 KB
testcase_06 AC 167 ms
21,632 KB
testcase_07 AC 219 ms
23,424 KB
testcase_08 AC 185 ms
19,072 KB
testcase_09 AC 188 ms
18,304 KB
testcase_10 AC 158 ms
19,456 KB
testcase_11 AC 154 ms
18,944 KB
testcase_12 AC 252 ms
24,448 KB
testcase_13 AC 242 ms
21,376 KB
testcase_14 AC 74 ms
14,080 KB
testcase_15 AC 242 ms
19,968 KB
testcase_16 AC 242 ms
18,176 KB
testcase_17 AC 269 ms
24,960 KB
testcase_18 AC 273 ms
22,016 KB
testcase_19 AC 290 ms
25,088 KB
testcase_20 AC 98 ms
16,512 KB
testcase_21 AC 69 ms
13,824 KB
testcase_22 AC 151 ms
20,736 KB
testcase_23 AC 330 ms
31,640 KB
testcase_24 AC 258 ms
25,420 KB
testcase_25 AC 232 ms
20,480 KB
testcase_26 AC 295 ms
28,032 KB
testcase_27 AC 243 ms
19,328 KB
testcase_28 AC 175 ms
19,840 KB
testcase_29 AC 173 ms
19,840 KB
testcase_30 AC 31 ms
10,496 KB
testcase_31 AC 30 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_valid(c, d, bs):
    b = bs[c] - {d}
    e = bs[d] - {c}
    return b and e and len(b | e) >= 2
N, M = map(int, input().split())
Es = [set() for i in range(N)]
for i in range(M):
    a, b = map(int, input().split())
    Es[a-1].add(b-1)
    Es[b-1].add(a-1)
d1 = Es[0]
d2 = set()
for d in d1: d2 |= Es[d]
d2 -= {0}
bs = [d1 & Eb for Eb in Es]
for c in d2:
    for d in Es[c]:
        if d in d2 and is_valid(c, d, bs):
            print("YES")
            break
    else:continue
    break
else:print("NO")
0