結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 152 ms
25,728 KB
testcase_06 AC 108 ms
23,424 KB
testcase_07 AC 138 ms
26,496 KB
testcase_08 AC 110 ms
21,760 KB
testcase_09 AC 127 ms
20,864 KB
testcase_10 AC 108 ms
21,504 KB
testcase_11 AC 109 ms
20,736 KB
testcase_12 AC 151 ms
27,520 KB
testcase_13 AC 134 ms
25,344 KB
testcase_14 AC 52 ms
14,848 KB
testcase_15 AC 167 ms
27,392 KB
testcase_16 AC 136 ms
22,400 KB
testcase_17 AC 146 ms
28,544 KB
testcase_18 AC 156 ms
25,728 KB
testcase_19 AC 153 ms
28,800 KB
testcase_20 AC 67 ms
17,536 KB
testcase_21 AC 49 ms
14,592 KB
testcase_22 AC 107 ms
22,400 KB
testcase_23 AC 215 ms
37,720 KB
testcase_24 AC 168 ms
27,592 KB
testcase_25 AC 168 ms
27,776 KB
testcase_26 AC 243 ms
31,616 KB
testcase_27 AC 204 ms
26,624 KB
testcase_28 AC 108 ms
23,296 KB
testcase_29 AC 115 ms
23,296 KB
testcase_30 AC 26 ms
10,880 KB
testcase_31 AC 26 ms
10,752 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