結果

問題 No.2910 単体ホモロジー入門
ユーザー miya145592miya145592
提出日時 2024-10-04 22:31:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-10-04 22:31:57
合計ジャッジ時間 3,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,560 KB
testcase_01 AC 35 ms
53,156 KB
testcase_02 AC 34 ms
53,064 KB
testcase_03 AC 35 ms
52,428 KB
testcase_04 AC 34 ms
53,748 KB
testcase_05 AC 34 ms
52,584 KB
testcase_06 AC 37 ms
53,844 KB
testcase_07 AC 35 ms
52,132 KB
testcase_08 AC 33 ms
53,320 KB
testcase_09 AC 34 ms
53,288 KB
testcase_10 AC 34 ms
52,064 KB
testcase_11 AC 34 ms
52,264 KB
testcase_12 AC 34 ms
53,076 KB
testcase_13 AC 39 ms
52,312 KB
testcase_14 AC 34 ms
53,540 KB
testcase_15 AC 34 ms
53,352 KB
testcase_16 AC 35 ms
52,700 KB
testcase_17 AC 39 ms
52,332 KB
testcase_18 AC 35 ms
53,380 KB
testcase_19 AC 35 ms
52,336 KB
testcase_20 AC 34 ms
53,576 KB
testcase_21 AC 35 ms
52,216 KB
testcase_22 AC 34 ms
52,676 KB
testcase_23 AC 34 ms
52,256 KB
testcase_24 AC 33 ms
52,156 KB
testcase_25 AC 33 ms
52,688 KB
testcase_26 AC 35 ms
53,080 KB
testcase_27 AC 36 ms
52,376 KB
testcase_28 AC 33 ms
52,940 KB
testcase_29 AC 37 ms
53,784 KB
testcase_30 AC 33 ms
54,248 KB
testcase_31 AC 34 ms
53,568 KB
testcase_32 AC 33 ms
52,744 KB
testcase_33 AC 34 ms
53,420 KB
testcase_34 AC 33 ms
52,468 KB
testcase_35 AC 34 ms
52,980 KB
testcase_36 AC 35 ms
52,688 KB
testcase_37 AC 36 ms
52,892 KB
testcase_38 AC 36 ms
53,892 KB
testcase_39 AC 35 ms
53,436 KB
testcase_40 AC 33 ms
52,820 KB
testcase_41 AC 34 ms
52,464 KB
testcase_42 AC 34 ms
53,208 KB
testcase_43 AC 38 ms
52,932 KB
testcase_44 AC 34 ms
53,428 KB
testcase_45 AC 34 ms
53,336 KB
testcase_46 AC 33 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools    
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
G = [set() for _ in range(N)]
for _ in range(M):
    i, j = map(int, input().split())
    G[i].add(j)
    G[j].add(i)
V = list(map(int, input().split()))
V = set(V)
if N<=2:
    print("No")
    exit()
for k in range(3, N+1):
    for l in itertools.permutations(range(N), k):
        s = set(l)
        if s==V:
            continue
        flag = True
        for i in range(k):
            u = l[i]
            v = l[(i+1)%k]
            if v not in G[u]:
                flag = False
                break
        if flag:
            print("Yes")
            exit()
print("No")
0