結果

問題 No.2910 単体ホモロジー入門
ユーザー manuomanuo
提出日時 2024-10-11 23:16:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 1,203 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 56,320 KB
最終ジャッジ日時 2024-10-11 23:16:52
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,320 KB
testcase_01 AC 48 ms
56,064 KB
testcase_02 AC 47 ms
56,064 KB
testcase_03 AC 47 ms
56,064 KB
testcase_04 AC 47 ms
55,936 KB
testcase_05 AC 48 ms
55,936 KB
testcase_06 AC 52 ms
55,808 KB
testcase_07 AC 52 ms
56,320 KB
testcase_08 AC 48 ms
56,064 KB
testcase_09 AC 48 ms
55,680 KB
testcase_10 AC 48 ms
56,320 KB
testcase_11 AC 47 ms
56,064 KB
testcase_12 AC 47 ms
56,064 KB
testcase_13 AC 47 ms
56,064 KB
testcase_14 AC 47 ms
56,320 KB
testcase_15 AC 48 ms
56,064 KB
testcase_16 AC 48 ms
55,936 KB
testcase_17 AC 48 ms
55,808 KB
testcase_18 AC 49 ms
56,064 KB
testcase_19 AC 47 ms
55,680 KB
testcase_20 AC 59 ms
56,192 KB
testcase_21 AC 48 ms
56,140 KB
testcase_22 AC 48 ms
56,064 KB
testcase_23 AC 47 ms
55,552 KB
testcase_24 AC 47 ms
55,808 KB
testcase_25 AC 48 ms
56,064 KB
testcase_26 AC 48 ms
56,192 KB
testcase_27 AC 48 ms
56,320 KB
testcase_28 AC 48 ms
55,808 KB
testcase_29 AC 47 ms
56,192 KB
testcase_30 AC 48 ms
55,552 KB
testcase_31 AC 48 ms
55,808 KB
testcase_32 AC 48 ms
55,552 KB
testcase_33 AC 48 ms
56,192 KB
testcase_34 AC 49 ms
56,192 KB
testcase_35 AC 48 ms
55,936 KB
testcase_36 AC 53 ms
55,936 KB
testcase_37 AC 48 ms
56,068 KB
testcase_38 AC 48 ms
55,936 KB
testcase_39 AC 53 ms
56,064 KB
testcase_40 AC 49 ms
55,936 KB
testcase_41 AC 48 ms
55,680 KB
testcase_42 AC 48 ms
55,680 KB
testcase_43 AC 48 ms
56,248 KB
testcase_44 AC 48 ms
56,140 KB
testcase_45 AC 48 ms
55,680 KB
testcase_46 AC 48 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict, Counter
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations
from functools import cmp_to_key, cache
from heapq import heappop, heappush
import math, sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10**7)
_int = lambda x: int(x)-1
MOD = 998244353
INF = 1<<62
Yes, No = "Yes", "No"

N, M = map(int, input().split())
memo = [[0]*N for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    memo[u][v] = 1
    memo[v][u] = 1
S = set(list(map(int, input().split())))
if N >= 3:
    for p in combinations(range(N), 3):
        for q in permutations(p):
            li = list(q)+[q[0]]
            for i in range(3):
                if memo[li[i]][li[i+1]] == 0:
                    break
            else:
                if S != set(q):
                    print(Yes)
                    exit()
if N == 4:
    for q in permutations(range(4)):
        li = list(q)+[q[0]]
        for i in range(4):
            if memo[li[i]][li[i+1]] == 0:
                break
        else:
            if S != set(q):
                print(Yes)
                exit()
print(No)
0