結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー tassei903tassei903
提出日時 2024-02-16 23:20:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,001 ms / 2,500 ms
コード長 1,402 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 158,748 KB
最終ジャッジ日時 2024-09-28 22:03:50
合計ジャッジ時間 26,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
96,268 KB
testcase_01 AC 1,265 ms
118,164 KB
testcase_02 AC 1,741 ms
150,748 KB
testcase_03 AC 67 ms
73,268 KB
testcase_04 AC 48 ms
65,536 KB
testcase_05 AC 66 ms
72,796 KB
testcase_06 AC 387 ms
87,132 KB
testcase_07 AC 1,705 ms
157,280 KB
testcase_08 AC 1,575 ms
148,260 KB
testcase_09 AC 1,724 ms
158,560 KB
testcase_10 AC 1,970 ms
158,688 KB
testcase_11 AC 2,001 ms
158,528 KB
testcase_12 AC 1,848 ms
158,476 KB
testcase_13 AC 1,984 ms
158,660 KB
testcase_14 AC 1,922 ms
158,420 KB
testcase_15 AC 481 ms
78,556 KB
testcase_16 AC 524 ms
78,496 KB
testcase_17 AC 494 ms
78,264 KB
testcase_18 AC 707 ms
100,524 KB
testcase_19 AC 1,254 ms
140,060 KB
testcase_20 AC 1,120 ms
128,944 KB
testcase_21 AC 1,590 ms
158,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################

N,M=map(int,input().split())
G=[[] for _ in range(N)]
for i in range(M):
    a,b=map(int,input().split())
    G[a-1].append(b-1)
    G[b-1].append(a-1)
C=list(map(int,input().split()))
C = [c-1 for c in C]
W=list(map(int,input().split()))
Group=[[-1]*N for _ in range(2**10)]
cost=[0]*(2**10)
for i in range(1,2**10):
    T=0
    w=0
    c=0
    for j in range(10):
        if((i>>j)&1):
            c+=W[j]
    cost[i]=c
    # que=deque([0])
    # Group[i][0]=w
    while T<N:
        que=[T]
        Group[i][T]=w
        while len(que):
            p=que.pop()
            for q in G[p]:
                if i>>C[p]&1 and i>>C[q]&1 and Group[i][q]==-1:
                    Group[i][q]=Group[i][p]
                    que.append(q)
        while T<N and Group[i][T]!=-1:
            T+=1
        w+=1
Q=int(input())
answers=[]
for _ in range(Q):
    ans=-1
    u,v=map(int,input().split())
    u-=1
    v-=1
    for j in range(1,2**10):
        if(Group[j][u]==Group[j][v]):
            if(ans==-1 or cost[j]<ans):
                ans=cost[j]
    answers.append(ans)
for ans in answers:
    print(ans)
0