結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー titiatitia
提出日時 2024-02-22 01:08:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,904 ms / 2,500 ms
コード長 1,397 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 125,092 KB
最終ジャッジ日時 2024-09-29 04:23:47
合計ジャッジ時間 29,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 781 ms
82,812 KB
testcase_01 AC 1,693 ms
102,236 KB
testcase_02 AC 1,330 ms
109,844 KB
testcase_03 AC 77 ms
76,628 KB
testcase_04 AC 49 ms
64,724 KB
testcase_05 AC 78 ms
76,280 KB
testcase_06 AC 725 ms
80,456 KB
testcase_07 AC 1,485 ms
119,216 KB
testcase_08 AC 1,338 ms
112,312 KB
testcase_09 AC 1,540 ms
120,176 KB
testcase_10 AC 1,675 ms
124,988 KB
testcase_11 AC 1,747 ms
124,608 KB
testcase_12 AC 1,756 ms
124,972 KB
testcase_13 AC 1,729 ms
125,092 KB
testcase_14 AC 1,686 ms
123,720 KB
testcase_15 AC 1,817 ms
79,540 KB
testcase_16 AC 1,801 ms
79,188 KB
testcase_17 AC 1,904 ms
79,472 KB
testcase_18 AC 958 ms
85,876 KB
testcase_19 AC 1,164 ms
103,272 KB
testcase_20 AC 871 ms
91,996 KB
testcase_21 AC 1,363 ms
118,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
EDGE=[]

for i in range(M):
    a,b=map(int,input().split())
    a-=1
    b-=1
    EDGE.append((a,b))

C=list(map(int,input().split()))

for i in range(N):
    C[i]-=1

W=list(map(int,input().split()))

Q=int(input())
Queries=[]

for i in range(Q):
    a,b=map(int,input().split())
    a-=1
    b-=1

    Queries.append((a,b))

# UnionFind

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

ANS=[1<<62]*Q

for i in range(1<<len(W)):
    score=0
    for j in range(len(W)):
        if i & (1<<j) != 0:
            score+=W[j]

    Group = [i for i in range(N)] # グループ分け
    Nodes = [1]*(N) # 各グループのノードの数

    for x,y in EDGE:
        if (i & (1<<C[x]))!= 0 and (i & (1<<C[y]))!= 0:
            Union(x,y)

    for j in range(Q):
        if find(Queries[j][0])==find(Queries[j][1]):
            ANS[j]=min(ANS[j],score)


for j in range(Q):
    if ANS[j]>=(1<<60):
        print(-1)
    else:
        print(ANS[j])

    

0