結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー Nzt3Nzt3
提出日時 2024-02-11 16:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,630 ms / 2,500 ms
コード長 985 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 159,740 KB
最終ジャッジ日時 2024-09-28 17:34:29
合計ジャッジ時間 22,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 411 ms
95,724 KB
testcase_01 AC 938 ms
118,140 KB
testcase_02 AC 1,466 ms
151,296 KB
testcase_03 AC 60 ms
70,764 KB
testcase_04 AC 45 ms
64,876 KB
testcase_05 AC 60 ms
69,876 KB
testcase_06 AC 340 ms
87,192 KB
testcase_07 AC 1,461 ms
156,944 KB
testcase_08 AC 1,354 ms
148,324 KB
testcase_09 AC 1,480 ms
158,088 KB
testcase_10 AC 1,603 ms
158,268 KB
testcase_11 AC 1,630 ms
158,592 KB
testcase_12 AC 1,608 ms
158,232 KB
testcase_13 AC 1,578 ms
158,280 KB
testcase_14 AC 1,607 ms
158,424 KB
testcase_15 AC 339 ms
77,892 KB
testcase_16 AC 353 ms
78,036 KB
testcase_17 AC 366 ms
78,136 KB
testcase_18 AC 684 ms
100,264 KB
testcase_19 AC 1,103 ms
139,700 KB
testcase_20 AC 978 ms
128,412 KB
testcase_21 AC 1,248 ms
159,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
N,M=map(int,stdin.readline().split())
G=[[] for _ in range(N)]
for _ in range(M):
  A,B=map(int,stdin.readline().split())
  A-=1
  B-=1
  G[A].append(B)
  G[B].append(A)

C=list(map(lambda x:int(x)-1,stdin.readline().split()))
W=list(map(int,stdin.readline().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(stdin.readline())
for _ in range(Q):
  U,V=map(int,stdin.readline().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