結果

問題 No.408 五輪ピック
ユーザー titiatitia
提出日時 2024-05-04 03:22:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 912 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 90,676 KB
最終ジャッジ日時 2024-11-25 09:51:57
合計ジャッジ時間 4,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,544 KB
testcase_01 AC 40 ms
52,892 KB
testcase_02 AC 39 ms
52,576 KB
testcase_03 AC 39 ms
53,296 KB
testcase_04 AC 40 ms
54,004 KB
testcase_05 AC 83 ms
78,736 KB
testcase_06 AC 81 ms
78,904 KB
testcase_07 AC 85 ms
77,600 KB
testcase_08 AC 78 ms
78,092 KB
testcase_09 AC 83 ms
77,892 KB
testcase_10 AC 86 ms
78,728 KB
testcase_11 AC 82 ms
78,676 KB
testcase_12 AC 91 ms
78,144 KB
testcase_13 AC 85 ms
78,520 KB
testcase_14 AC 70 ms
73,496 KB
testcase_15 MLE -
testcase_16 AC 89 ms
78,484 KB
testcase_17 AC 87 ms
78,472 KB
testcase_18 AC 86 ms
78,852 KB
testcase_19 AC 90 ms
78,584 KB
testcase_20 MLE -
testcase_21 AC 69 ms
74,356 KB
testcase_22 AC 84 ms
79,452 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 95 ms
78,552 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 40 ms
52,436 KB
testcase_31 AC 39 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

EDGE=[]

for i in range(M):
    a,b=map(int,input().split())
    a-=1
    b-=1
    EDGE.append((a,b))


E=[set() for i in range(N)]

for a,b in EDGE:
    E[a].add(b)
    E[b].add(a)

LIST=[]
for to in E[0]:
    for toto in E[to]:
        if toto!=0:
            LIST.append((to,toto))

S=[set() for i in range(N)]

for to,toto in LIST:
    S[toto].add(to)


for a,b in EDGE:
    aflag=0
    bflag=0

    if b in S[a]:
        aflag=1
        S[a].remove(b)

    if a in S[b]:
        bflag=1
        S[b].remove(a)

    if len(S[a])==0 or len(S[b])==0:
        pass
    elif len(S[a])+len(S[b])>=3:
        print("YES")
        exit()
    else:
        x=list(S[a])[0]
        y=list(S[b])[0]

        if x!=y:
            print("YES")
            exit()

    if aflag==1:
        S[a].add(b)

    if bflag==1:
        S[b].add(a)

print("NO")
0