結果

問題 No.408 五輪ピック
ユーザー convexineqconvexineq
提出日時 2021-02-10 00:44:44
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 693 bytes
コンパイル時間 1,178 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 84,588 KB
最終ジャッジ日時 2024-07-07 06:02:33
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,508 KB
testcase_01 AC 29 ms
53,084 KB
testcase_02 AC 30 ms
52,064 KB
testcase_03 AC 30 ms
52,160 KB
testcase_04 AC 31 ms
53,820 KB
testcase_05 AC 84 ms
78,220 KB
testcase_06 AC 81 ms
79,012 KB
testcase_07 MLE -
testcase_08 AC 90 ms
76,996 KB
testcase_09 AC 86 ms
77,872 KB
testcase_10 AC 84 ms
78,604 KB
testcase_11 AC 82 ms
78,152 KB
testcase_12 MLE -
testcase_13 AC 88 ms
78,536 KB
testcase_14 AC 70 ms
78,064 KB
testcase_15 AC 84 ms
78,032 KB
testcase_16 AC 94 ms
78,580 KB
testcase_17 AC 103 ms
79,340 KB
testcase_18 AC 104 ms
79,740 KB
testcase_19 MLE -
testcase_20 AC 73 ms
78,856 KB
testcase_21 AC 70 ms
77,924 KB
testcase_22 AC 79 ms
79,744 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 83 ms
78,368 KB
testcase_26 MLE -
testcase_27 AC 89 ms
78,476 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 32 ms
52,956 KB
testcase_31 AC 31 ms
52,556 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