結果

問題 No.2948 move move rotti
ユーザー ゼットゼット
提出日時 2024-10-25 21:42:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 114,928 KB
最終ジャッジ日時 2024-10-25 21:42:14
合計ジャッジ時間 7,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,936 KB
testcase_01 WA -
testcase_02 AC 38 ms
53,352 KB
testcase_03 WA -
testcase_04 AC 190 ms
110,588 KB
testcase_05 WA -
testcase_06 AC 48 ms
62,516 KB
testcase_07 AC 202 ms
110,368 KB
testcase_08 AC 740 ms
107,268 KB
testcase_09 WA -
testcase_10 AC 39 ms
52,944 KB
testcase_11 AC 44 ms
59,684 KB
testcase_12 AC 81 ms
74,192 KB
testcase_13 AC 130 ms
99,284 KB
testcase_14 AC 120 ms
91,520 KB
testcase_15 AC 147 ms
84,036 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 357 ms
107,084 KB
testcase_21 AC 632 ms
107,332 KB
testcase_22 AC 227 ms
110,764 KB
testcase_23 AC 545 ms
107,292 KB
testcase_24 AC 215 ms
110,836 KB
testcase_25 AC 244 ms
114,928 KB
testcase_26 AC 69 ms
71,964 KB
testcase_27 AC 39 ms
53,552 KB
testcase_28 AC 77 ms
73,252 KB
testcase_29 AC 39 ms
52,936 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
A=list(map(int,input().split()))
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(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]+=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