結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,600 KB
testcase_01 AC 32 ms
53,672 KB
testcase_02 AC 33 ms
52,580 KB
testcase_03 AC 32 ms
53,980 KB
testcase_04 AC 34 ms
52,960 KB
testcase_05 AC 67 ms
78,476 KB
testcase_06 AC 93 ms
78,828 KB
testcase_07 AC 82 ms
77,680 KB
testcase_08 AC 65 ms
77,752 KB
testcase_09 AC 71 ms
78,060 KB
testcase_10 AC 79 ms
78,872 KB
testcase_11 AC 78 ms
78,480 KB
testcase_12 AC 83 ms
78,072 KB
testcase_13 AC 71 ms
78,196 KB
testcase_14 AC 57 ms
72,992 KB
testcase_15 MLE -
testcase_16 AC 75 ms
78,648 KB
testcase_17 AC 78 ms
78,332 KB
testcase_18 AC 80 ms
78,324 KB
testcase_19 AC 81 ms
78,708 KB
testcase_20 MLE -
testcase_21 AC 75 ms
74,436 KB
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 83 ms
79,020 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 33 ms
52,504 KB
testcase_31 AC 33 ms
52,520 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