結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー Nzt3Nzt3
提出日時 2024-02-11 16:18:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,779 ms / 2,500 ms
コード長 910 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 159,124 KB
最終ジャッジ日時 2024-02-11 16:18:58
合計ジャッジ時間 24,439 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
95,380 KB
testcase_01 AC 1,044 ms
117,652 KB
testcase_02 AC 1,592 ms
150,416 KB
testcase_03 AC 63 ms
70,604 KB
testcase_04 AC 50 ms
64,440 KB
testcase_05 AC 65 ms
70,596 KB
testcase_06 AC 444 ms
86,536 KB
testcase_07 AC 1,592 ms
156,916 KB
testcase_08 AC 1,441 ms
148,084 KB
testcase_09 AC 1,592 ms
157,940 KB
testcase_10 AC 1,678 ms
157,972 KB
testcase_11 AC 1,779 ms
157,972 KB
testcase_12 AC 1,705 ms
158,224 KB
testcase_13 AC 1,698 ms
158,228 KB
testcase_14 AC 1,747 ms
157,972 KB
testcase_15 AC 407 ms
77,932 KB
testcase_16 AC 419 ms
77,932 KB
testcase_17 AC 446 ms
77,932 KB
testcase_18 AC 771 ms
99,988 KB
testcase_19 AC 1,173 ms
139,908 KB
testcase_20 AC 1,056 ms
128,660 KB
testcase_21 AC 1,320 ms
159,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
G=[[] for _ in range(N)]
for _ in range(M):
  A,B=map(int,input().split())
  A-=1
  B-=1
  G[A].append(B)
  G[B].append(A)

C=list(map(lambda x:int(x)-1,input().split()))
W=list(map(int,input().split()))

root=[[-1]*N for _ in range(1<<10)]
for i in range(1<<10):
  for j in range(N):
    if root[i][j]!=-1:
      continue
    root[i][j]=j
    if (i>>C[j]&1)==0:
      continue
    q=[]
    l=0
    q.append(j)
    while len(q)>l:
      v=q[l]
      l+=1
      for k in G[v]:
        if root[i][k]==-1 and (i>>C[k]&1):
          root[i][k]=j
          q.append(k)

cost=[0]*(1<<10)
for i in range(1<<10):
  for j in range(10):
    if i>>j&1:
      cost[i]+=W[j]

Q=int(input())
for _ in range(Q):
  U,V=map(int,input().split())
  U-=1
  V-=1
  ans=10**11
  for i in range(1<<10):
    if root[i][U]==root[i][V]:
      ans=min(ans,cost[i])
  if ans==10**11:
    ans=-1
  print(ans)
0