結果

問題 No.2948 move move rotti
ユーザー ねしんねしん
提出日時 2024-10-25 22:56:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,285 ms / 4,000 ms
コード長 856 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 243,596 KB
最終ジャッジ日時 2024-10-25 22:56:16
合計ジャッジ時間 11,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,720 KB
testcase_01 AC 42 ms
54,268 KB
testcase_02 AC 42 ms
53,916 KB
testcase_03 AC 212 ms
95,592 KB
testcase_04 AC 44 ms
54,584 KB
testcase_05 AC 43 ms
54,264 KB
testcase_06 AC 43 ms
54,988 KB
testcase_07 AC 43 ms
54,384 KB
testcase_08 AC 2,285 ms
243,596 KB
testcase_09 AC 205 ms
95,840 KB
testcase_10 AC 41 ms
55,316 KB
testcase_11 AC 41 ms
54,864 KB
testcase_12 AC 64 ms
70,808 KB
testcase_13 AC 79 ms
76,456 KB
testcase_14 AC 40 ms
55,672 KB
testcase_15 AC 198 ms
95,116 KB
testcase_16 AC 229 ms
95,876 KB
testcase_17 AC 191 ms
94,892 KB
testcase_18 AC 166 ms
90,100 KB
testcase_19 AC 325 ms
99,204 KB
testcase_20 AC 702 ms
137,668 KB
testcase_21 AC 2,234 ms
239,932 KB
testcase_22 AC 165 ms
81,888 KB
testcase_23 AC 1,705 ms
232,680 KB
testcase_24 AC 85 ms
77,028 KB
testcase_25 AC 194 ms
88,288 KB
testcase_26 AC 62 ms
68,212 KB
testcase_27 AC 41 ms
55,552 KB
testcase_28 AC 75 ms
74,368 KB
testcase_29 AC 41 ms
55,788 KB
testcase_30 AC 58 ms
67,232 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    #if i==3:
      #print(c,p,d)
    for j in path[p]:
      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