結果

問題 No.2948 move move rotti
ユーザー ゼットゼット
提出日時 2024-10-25 21:44:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 747 ms / 4,000 ms
コード長 909 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,716 KB
実行使用メモリ 114,600 KB
最終ジャッジ日時 2024-10-25 21:45:06
合計ジャッジ時間 7,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 39 ms
52,992 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 291 ms
95,144 KB
testcase_04 AC 196 ms
110,300 KB
testcase_05 AC 38 ms
53,204 KB
testcase_06 AC 48 ms
61,644 KB
testcase_07 AC 191 ms
110,712 KB
testcase_08 AC 747 ms
106,992 KB
testcase_09 AC 426 ms
99,528 KB
testcase_10 AC 38 ms
53,228 KB
testcase_11 AC 45 ms
61,312 KB
testcase_12 AC 79 ms
74,264 KB
testcase_13 AC 134 ms
99,440 KB
testcase_14 AC 119 ms
91,612 KB
testcase_15 AC 148 ms
83,816 KB
testcase_16 AC 503 ms
103,240 KB
testcase_17 AC 262 ms
95,368 KB
testcase_18 AC 396 ms
107,016 KB
testcase_19 AC 233 ms
103,164 KB
testcase_20 AC 347 ms
107,152 KB
testcase_21 AC 654 ms
106,920 KB
testcase_22 AC 226 ms
110,844 KB
testcase_23 AC 544 ms
110,824 KB
testcase_24 AC 222 ms
111,056 KB
testcase_25 AC 239 ms
114,600 KB
testcase_26 AC 69 ms
71,892 KB
testcase_27 AC 38 ms
52,964 KB
testcase_28 AC 72 ms
72,296 KB
testcase_29 AC 38 ms
53,328 KB
testcase_30 AC 71 ms
71,672 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
  v[1][x]+=p[x]
  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