結果

問題 No.2910 単体ホモロジー入門
ユーザー titiatitia
提出日時 2024-10-04 22:05:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,440 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,788 KB
最終ジャッジ日時 2024-10-04 22:05:34
合計ジャッジ時間 27,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
77,536 KB
testcase_01 AC 243 ms
77,568 KB
testcase_02 AC 284 ms
77,528 KB
testcase_03 AC 215 ms
77,304 KB
testcase_04 AC 227 ms
77,492 KB
testcase_05 AC 218 ms
77,440 KB
testcase_06 AC 221 ms
77,400 KB
testcase_07 AC 232 ms
77,636 KB
testcase_08 AC 216 ms
77,440 KB
testcase_09 AC 214 ms
77,440 KB
testcase_10 AC 1,304 ms
76,764 KB
testcase_11 AC 1,333 ms
76,764 KB
testcase_12 AC 72 ms
76,372 KB
testcase_13 AC 68 ms
76,544 KB
testcase_14 AC 869 ms
76,764 KB
testcase_15 AC 896 ms
76,840 KB
testcase_16 AC 84 ms
76,544 KB
testcase_17 AC 82 ms
76,552 KB
testcase_18 AC 688 ms
76,800 KB
testcase_19 AC 691 ms
76,544 KB
testcase_20 AC 1,050 ms
76,800 KB
testcase_21 AC 1,356 ms
76,900 KB
testcase_22 AC 1,351 ms
76,928 KB
testcase_23 AC 202 ms
77,268 KB
testcase_24 AC 202 ms
77,744 KB
testcase_25 AC 1,356 ms
76,800 KB
testcase_26 AC 1,440 ms
77,000 KB
testcase_27 AC 201 ms
77,440 KB
testcase_28 AC 200 ms
77,184 KB
testcase_29 AC 1,278 ms
76,936 KB
testcase_30 AC 217 ms
77,420 KB
testcase_31 AC 215 ms
77,696 KB
testcase_32 AC 1,388 ms
76,468 KB
testcase_33 AC 225 ms
77,788 KB
testcase_34 AC 943 ms
77,148 KB
testcase_35 AC 884 ms
77,068 KB
testcase_36 AC 906 ms
77,184 KB
testcase_37 AC 272 ms
77,364 KB
testcase_38 AC 244 ms
77,176 KB
testcase_39 AC 248 ms
77,004 KB
testcase_40 AC 387 ms
77,312 KB
testcase_41 AC 363 ms
77,312 KB
testcase_42 AC 391 ms
77,312 KB
testcase_43 AC 366 ms
77,684 KB
testcase_44 AC 361 ms
77,312 KB
testcase_45 AC 225 ms
77,648 KB
testcase_46 AC 239 ms
77,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import choice,randint

N,M=map(int,input().split())
E=[[] for i in range(N)]

for i in range(M):
    x,y=map(int,input().split())
    E[x].append(y)
    E[y].append(x)

X=list(map(int,input().split()))
X.sort()
X=tuple(X)

SET=set()

for i in range(10**5):
    A=[randint(0,N-1)]

    flag=0

    while flag<100 and len(A)<=5:
        if E[A[-1]]==[]:
            break
        to=choice(E[A[-1]])

        if to==A[0] and len(A)>=3:
            SET.add(tuple(sorted(A)))
            break
        else:
            if to in A:
                flag+=1
                continue
            else:
                A.append(to)
                flag=0
                continue

SET.discard(X)

if len(SET)>0:
    print("Yes")
else:
    print("No")
            
    

0