結果

問題 No.2948 move move rotti
ユーザー ねしんねしん
提出日時 2024-10-25 22:48:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 246,736 KB
最終ジャッジ日時 2024-10-25 22:48:23
合計ジャッジ時間 9,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,788 KB
testcase_01 AC 42 ms
53,980 KB
testcase_02 AC 43 ms
55,036 KB
testcase_03 AC 215 ms
94,564 KB
testcase_04 AC 42 ms
54,120 KB
testcase_05 AC 43 ms
54,564 KB
testcase_06 AC 43 ms
54,772 KB
testcase_07 AC 44 ms
54,864 KB
testcase_08 AC 2,326 ms
246,736 KB
testcase_09 AC 209 ms
94,448 KB
testcase_10 AC 44 ms
54,608 KB
testcase_11 WA -
testcase_12 AC 92 ms
77,620 KB
testcase_13 AC 51 ms
61,984 KB
testcase_14 AC 42 ms
54,776 KB
testcase_15 AC 134 ms
84,860 KB
testcase_16 WA -
testcase_17 AC 246 ms
88,060 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 64 ms
70,404 KB
testcase_21 AC 1,439 ms
183,236 KB
testcase_22 AC 66 ms
68,240 KB
testcase_23 AC 127 ms
78,648 KB
testcase_24 AC 53 ms
62,660 KB
testcase_25 AC 61 ms
66,360 KB
testcase_26 AC 65 ms
67,704 KB
testcase_27 AC 44 ms
55,044 KB
testcase_28 AC 85 ms
76,868 KB
testcase_29 AC 44 ms
53,964 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):
  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