結果

問題 No.2948 move move rotti
ユーザー ねしんねしん
提出日時 2024-10-25 22:43:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 97,028 KB
最終ジャッジ日時 2024-10-25 22:43:05
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,368 KB
testcase_01 AC 44 ms
54,252 KB
testcase_02 AC 44 ms
54,380 KB
testcase_03 AC 220 ms
94,816 KB
testcase_04 AC 43 ms
55,340 KB
testcase_05 AC 43 ms
54,268 KB
testcase_06 AC 43 ms
54,428 KB
testcase_07 AC 43 ms
54,116 KB
testcase_08 AC 44 ms
54,652 KB
testcase_09 AC 219 ms
94,676 KB
testcase_10 AC 44 ms
54,312 KB
testcase_11 WA -
testcase_12 AC 90 ms
77,720 KB
testcase_13 AC 51 ms
61,824 KB
testcase_14 AC 42 ms
54,788 KB
testcase_15 AC 139 ms
84,828 KB
testcase_16 WA -
testcase_17 AC 187 ms
87,216 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
54,196 KB
testcase_21 AC 43 ms
55,288 KB
testcase_22 AC 44 ms
54,548 KB
testcase_23 AC 48 ms
55,148 KB
testcase_24 AC 45 ms
54,364 KB
testcase_25 AC 44 ms
54,800 KB
testcase_26 AC 56 ms
65,452 KB
testcase_27 AC 47 ms
54,584 KB
testcase_28 AC 60 ms
66,880 KB
testcase_29 AC 44 ms
54,440 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M,K=list(map(int,input().split()))
X=list(map(int,input().split()))
#print(X)
if len(set(X))==1:
  print("Yes")
  exit()
path=[]
for i in range(N):
  path.append([])
for j in range(M):
  u,v=list(map(int,input().split()))
  u-=1
  v-=1
  path[u].append(v)
  path[v].append(u)
for i in range(K):
  X[i]-=1
for i in range(N):
  if i in X:
    #print(i,X)
    continue
  Q=deque()
  check=set()
  Q.append((2**i,i,0))
  check.add((2**i,i))
  cnt=[]
  for j in range(N):
    cnt.append(set())
  while len(Q)>0:
    c,p,d=Q.popleft()
    #print(c,p,d)
    for j in path[i]:
      if c&2**j==0 and (c|2**j,j) not in check:
        check.add((c|2**j,j))
        Q.append((c|2**j,j,d+1))
        cnt[j].add(d+1)
  g=set()
  for j in range(N):
    g.add(j)
  for j in X:
    g=g&cnt[j]
  #print(i,g,cnt)
  if len(g)!=0:
    print("Yes")
    exit()
print("No")
0