結果

問題 No.2948 move move rotti
ユーザー timitimi
提出日時 2024-10-25 22:23:59
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 832 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 820,984 KB
最終ジャッジ日時 2024-10-25 22:24:05
合計ジャッジ時間 6,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,112 KB
testcase_01 AC 38 ms
52,380 KB
testcase_02 AC 42 ms
54,004 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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()
      if (p,q) not in D:
        DD[(p,q)]=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