結果

問題 No.408 五輪ピック
ユーザー convexineqconvexineq
提出日時 2021-02-10 00:45:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 693 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-07-07 06:02:55
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 201 ms
20,480 KB
testcase_06 AC 131 ms
22,016 KB
testcase_07 AC 176 ms
23,680 KB
testcase_08 AC 154 ms
18,944 KB
testcase_09 AC 156 ms
18,304 KB
testcase_10 AC 125 ms
19,584 KB
testcase_11 AC 121 ms
18,944 KB
testcase_12 AC 201 ms
24,576 KB
testcase_13 AC 191 ms
20,480 KB
testcase_14 AC 62 ms
13,952 KB
testcase_15 AC 192 ms
16,384 KB
testcase_16 AC 198 ms
18,048 KB
testcase_17 AC 214 ms
24,832 KB
testcase_18 AC 211 ms
22,144 KB
testcase_19 AC 228 ms
25,216 KB
testcase_20 AC 82 ms
16,640 KB
testcase_21 AC 64 ms
14,080 KB
testcase_22 AC 126 ms
21,120 KB
testcase_23 AC 226 ms
25,524 KB
testcase_24 AC 190 ms
23,372 KB
testcase_25 AC 186 ms
17,920 KB
testcase_26 AC 231 ms
28,288 KB
testcase_27 AC 193 ms
17,664 KB
testcase_28 AC 136 ms
19,328 KB
testcase_29 AC 134 ms
19,456 KB
testcase_30 AC 26 ms
10,624 KB
testcase_31 AC 26 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
g = [set() for _ in range(n)]
for i in range(m):
    a,b = map(int,input().split())
    g[a-1].add(b-1)
    g[b-1].add(a-1)
    
size = [0]*n
res = [None]*n
for i in range(1,n):
    s = g[0]&g[i]
    if len(s) >= 3:
        size[i] = 3
    else:
        size[i] = len(s)
        res[i] = s

for a in range(1,n):
    if size[a] == 0: continue
    for b in g[a]:
        if b==0 or size[b] == 0: continue
        if size[a] >= 3 or size[b] >= 3:
            print("YES")
            exit()
        for c in res[a]:
            for d in res[b]:
                if c != d and b != c and a != d:
                    print("YES")
                    exit()
print("NO")
0