結果

問題 No.408 五輪ピック
ユーザー titiatitia
提出日時 2024-05-04 03:23:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 912 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,596 KB
最終ジャッジ日時 2024-11-25 09:52:25
合計ジャッジ時間 5,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 142 ms
25,600 KB
testcase_06 AC 104 ms
23,296 KB
testcase_07 AC 142 ms
26,240 KB
testcase_08 AC 104 ms
21,632 KB
testcase_09 AC 100 ms
20,608 KB
testcase_10 AC 99 ms
21,376 KB
testcase_11 AC 95 ms
20,480 KB
testcase_12 AC 146 ms
27,392 KB
testcase_13 AC 137 ms
25,088 KB
testcase_14 AC 54 ms
14,848 KB
testcase_15 AC 164 ms
27,008 KB
testcase_16 AC 138 ms
22,144 KB
testcase_17 AC 139 ms
28,288 KB
testcase_18 AC 146 ms
25,600 KB
testcase_19 AC 163 ms
28,928 KB
testcase_20 AC 68 ms
17,408 KB
testcase_21 AC 49 ms
14,336 KB
testcase_22 AC 95 ms
22,272 KB
testcase_23 AC 221 ms
37,596 KB
testcase_24 AC 169 ms
27,464 KB
testcase_25 AC 170 ms
27,520 KB
testcase_26 AC 205 ms
31,616 KB
testcase_27 AC 202 ms
26,624 KB
testcase_28 AC 109 ms
23,296 KB
testcase_29 AC 114 ms
23,040 KB
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 25 ms
10,624 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