結果

問題 No.2948 move move rotti
ユーザー ゼットゼット
提出日時 2024-10-25 21:43:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 114,480 KB
最終ジャッジ日時 2024-10-25 21:44:03
合計ジャッジ時間 7,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,688 KB
testcase_01 AC 36 ms
52,868 KB
testcase_02 AC 35 ms
53,772 KB
testcase_03 AC 285 ms
95,116 KB
testcase_04 AC 186 ms
110,240 KB
testcase_05 WA -
testcase_06 AC 45 ms
61,856 KB
testcase_07 AC 186 ms
110,612 KB
testcase_08 AC 711 ms
106,924 KB
testcase_09 AC 414 ms
99,252 KB
testcase_10 AC 43 ms
53,344 KB
testcase_11 AC 43 ms
60,056 KB
testcase_12 AC 75 ms
75,152 KB
testcase_13 AC 123 ms
99,324 KB
testcase_14 AC 112 ms
91,400 KB
testcase_15 AC 139 ms
83,692 KB
testcase_16 AC 479 ms
103,208 KB
testcase_17 AC 279 ms
95,268 KB
testcase_18 AC 375 ms
107,100 KB
testcase_19 AC 224 ms
103,368 KB
testcase_20 AC 335 ms
106,988 KB
testcase_21 AC 625 ms
106,908 KB
testcase_22 AC 218 ms
111,076 KB
testcase_23 AC 533 ms
110,820 KB
testcase_24 AC 214 ms
110,928 KB
testcase_25 AC 237 ms
114,480 KB
testcase_26 AC 65 ms
71,424 KB
testcase_27 AC 36 ms
52,816 KB
testcase_28 AC 70 ms
73,180 KB
testcase_29 AC 36 ms
52,964 KB
testcase_30 AC 65 ms
71,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
A=list(map(int,input().split()))
p=[0]*N
G=[[] for i in range(N)]
v=[[0]*N for i in range(N+1)]
for i in range(K):
  A[i]-=1
for i in range(K):
  p[A[i]]+=1
for i in range(M):
  a,b=map(int,input().split())
  G[a-1].append(b-1)
  G[b-1].append(a-1)
for x in range(N):
  if not x in A:
    continue
  h=[[0]*N for i in range(N+1)]
  dp=[0]*(N*(2**N))
  dp[(2**x)*N+x]=1
  for bit in range(1,2**N):
    count=0
    for k in range(N):
      if (bit>>k)&1:
        count+=1
    for i in range(N):
      if dp[bit*N+i]==0:
        continue
      for j in G[i]:
        if (bit>>j)&1:
          continue
        bit2=bit+2**j
        h[count+1][j]=1
        dp[bit2*N+j]=1
  for i in range(N+1):
    for j in range(N):
      v[i][j]+=p[x]*h[i][j]
for count in range(1,N+1):
  for j in range(N):
    if v[count][j]==K:
      print('Yes')
      exit()
print('No')
      
0