結果

問題 No.2948 move move rotti
ユーザー timitimi
提出日時 2024-10-25 22:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 795 ms / 4,000 ms
コード長 841 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 129,072 KB
最終ジャッジ日時 2024-10-25 22:25:13
合計ジャッジ時間 7,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,384 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 43 ms
54,668 KB
testcase_03 AC 347 ms
97,676 KB
testcase_04 AC 42 ms
54,996 KB
testcase_05 AC 39 ms
52,404 KB
testcase_06 AC 44 ms
55,140 KB
testcase_07 AC 44 ms
54,704 KB
testcase_08 AC 783 ms
129,072 KB
testcase_09 AC 788 ms
126,036 KB
testcase_10 AC 43 ms
55,832 KB
testcase_11 AC 43 ms
55,204 KB
testcase_12 AC 90 ms
76,868 KB
testcase_13 AC 69 ms
70,928 KB
testcase_14 AC 43 ms
55,536 KB
testcase_15 AC 172 ms
86,216 KB
testcase_16 AC 605 ms
116,088 KB
testcase_17 AC 346 ms
96,716 KB
testcase_18 AC 496 ms
103,024 KB
testcase_19 AC 227 ms
79,784 KB
testcase_20 AC 297 ms
84,016 KB
testcase_21 AC 795 ms
124,044 KB
testcase_22 AC 123 ms
77,064 KB
testcase_23 AC 560 ms
105,944 KB
testcase_24 AC 75 ms
74,104 KB
testcase_25 AC 145 ms
77,144 KB
testcase_26 AC 66 ms
69,588 KB
testcase_27 AC 43 ms
54,148 KB
testcase_28 AC 85 ms
76,868 KB
testcase_29 AC 43 ms
54,864 KB
testcase_30 AC 64 ms
67,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int, input().split())
X=list(map(int, input().split()))
if len(set(X))==1:
  print('Yes')
  exit()
  
D=[[] for i in range(N)]
for i in range(M):
  u,v=map(int, input().split())
  u-=1;v-=1
  D[u].append(v);D[v].append(u)
from collections import deque
d=deque()
ans=[(1<<(N+2))-1]*N
for i in range(K):
  now=X[i]-1
  d=deque()
  V=[0]*N 
  V[now]+=1 
  d.append((now,1<<now))
  for j in range(N):
    nd=deque()
    while d:
      now,p=d.popleft()
      for nex in D[now]:
        if not p&(1<<nex):          
          pp=p^(1<<nex)
          #V[nex]^=(1<<(j+1))
          nd.append((nex,pp))
    DD={}
    while nd:
      p,q=nd.popleft()
      r=p*100+q
      if r not in DD:
        DD[r]=1
        V[p]|=1<<(j+1)
        d.append((p,q))
  for j in range(N):
    ans[j]&=V[j]
if max(ans)==0:
  print('No')
else:
  print('Yes')
0