結果

問題 No.2910 単体ホモロジー入門
ユーザー manuomanuo
提出日時 2024-10-11 22:56:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 986 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 57,996 KB
最終ジャッジ日時 2024-10-11 22:56:15
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,552 KB
testcase_01 AC 50 ms
55,808 KB
testcase_02 AC 46 ms
55,424 KB
testcase_03 AC 46 ms
55,424 KB
testcase_04 AC 46 ms
55,680 KB
testcase_05 AC 49 ms
55,680 KB
testcase_06 AC 47 ms
55,680 KB
testcase_07 AC 43 ms
55,552 KB
testcase_08 AC 45 ms
55,884 KB
testcase_09 AC 45 ms
55,296 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 46 ms
55,552 KB
testcase_24 AC 48 ms
55,680 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 45 ms
55,168 KB
testcase_28 AC 45 ms
55,680 KB
testcase_29 WA -
testcase_30 AC 48 ms
55,424 KB
testcase_31 AC 46 ms
55,808 KB
testcase_32 WA -
testcase_33 AC 45 ms
55,680 KB
testcase_34 AC 47 ms
55,936 KB
testcase_35 AC 54 ms
55,552 KB
testcase_36 AC 48 ms
55,680 KB
testcase_37 AC 44 ms
55,680 KB
testcase_38 AC 47 ms
55,552 KB
testcase_39 AC 47 ms
55,808 KB
testcase_40 WA -
testcase_41 AC 45 ms
55,680 KB
testcase_42 AC 44 ms
55,424 KB
testcase_43 AC 45 ms
55,936 KB
testcase_44 AC 45 ms
55,296 KB
testcase_45 WA -
testcase_46 AC 44 ms
55,368 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())
E = defaultdict(list)
for _ in range(M):
    u, v = map(int, input().split())
    E[u].append(v)
    E[v].append(u)

S = set(list(map(int, input().split())))
stack = []
memo = [0]*N
def dfs(i, parent):
    for j in E[i]:
        if j == parent: continue
        stack.append(j)
        if memo[j]:
            end = stack[-1]
            T = set(stack[stack.index(end):])
            print(Yes if T != S else No)
            exit()
        memo[j] = 1
        dfs(j, i)
        memo[j] = 0
        stack.pop()
stack.append(0)
memo[0] = 1
dfs(0, -1)
0