結果

問題 No.2948 move move rotti
ユーザー mkawa2mkawa2
提出日時 2024-10-25 22:14:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 797 ms / 4,000 ms
コード長 1,414 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 169,588 KB
最終ジャッジ日時 2024-10-25 22:14:41
合計ジャッジ時間 8,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,072 KB
testcase_01 AC 35 ms
52,460 KB
testcase_02 AC 36 ms
52,444 KB
testcase_03 AC 300 ms
113,856 KB
testcase_04 AC 138 ms
134,656 KB
testcase_05 AC 36 ms
53,556 KB
testcase_06 AC 36 ms
53,540 KB
testcase_07 AC 149 ms
134,536 KB
testcase_08 AC 601 ms
164,728 KB
testcase_09 AC 681 ms
164,452 KB
testcase_10 AC 36 ms
53,324 KB
testcase_11 AC 36 ms
53,256 KB
testcase_12 AC 67 ms
74,124 KB
testcase_13 AC 101 ms
96,004 KB
testcase_14 AC 79 ms
95,268 KB
testcase_15 AC 145 ms
88,884 KB
testcase_16 AC 558 ms
151,108 KB
testcase_17 AC 292 ms
113,580 KB
testcase_18 AC 521 ms
167,220 KB
testcase_19 AC 277 ms
163,804 KB
testcase_20 AC 420 ms
163,516 KB
testcase_21 AC 797 ms
163,700 KB
testcase_22 AC 214 ms
145,032 KB
testcase_23 AC 546 ms
169,588 KB
testcase_24 AC 163 ms
133,528 KB
testcase_25 AC 212 ms
139,228 KB
testcase_26 AC 62 ms
68,096 KB
testcase_27 AC 36 ms
52,936 KB
testcase_28 AC 64 ms
71,624 KB
testcase_29 AC 35 ms
54,052 KB
testcase_30 AC 61 ms
71,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n,m,k=LI()
xx=LI1()
to=[[] for _ in range(n)]
for _ in range(m):
    u,v=LI1()
    to[u].append(v)
    to[v].append(u)


dp=[[0]*k for _ in range(n)]
for i,x in enumerate(xx):
    vis=[[0]*n for _ in range(1<<n)]
    vis[1<<x][x]=1
    st=[(1<<x,x,1)]
    dp[x][i]|=1
    while st:
        s,u,d=st.pop()
        nd=d+1
        for v in to[u]:
            if s>>v&1:continue
            ns=s|1<<v
            if vis[ns][v]>>nd&1:continue
            dp[v][i]|=1<<nd
            vis[ns][v]|=1<<nd
            st.append((ns,v,nd))

for u in range(n):
    x=(1<<n)-1
    for s in dp[u]:x&=s
    if x:
        print("Yes")
        exit()

print("No")
0