結果

問題 No.1690 Power Grid
ユーザー KazunKazun
提出日時 2021-09-25 01:33:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 3,000 ms
コード長 936 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,696 KB
最終ジャッジ日時 2024-07-05 11:53:11
合計ジャッジ時間 9,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 64 ms
67,584 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 312 ms
80,540 KB
testcase_07 AC 314 ms
80,484 KB
testcase_08 AC 358 ms
84,432 KB
testcase_09 AC 360 ms
84,348 KB
testcase_10 AC 464 ms
84,312 KB
testcase_11 AC 316 ms
80,232 KB
testcase_12 AC 38 ms
52,992 KB
testcase_13 AC 66 ms
71,552 KB
testcase_14 AC 114 ms
77,040 KB
testcase_15 AC 574 ms
86,768 KB
testcase_16 AC 455 ms
80,512 KB
testcase_17 AC 353 ms
81,236 KB
testcase_18 AC 166 ms
79,020 KB
testcase_19 AC 481 ms
80,832 KB
testcase_20 AC 445 ms
85,880 KB
testcase_21 AC 598 ms
88,228 KB
testcase_22 AC 456 ms
80,588 KB
testcase_23 AC 445 ms
80,476 KB
testcase_24 AC 528 ms
85,492 KB
testcase_25 AC 577 ms
88,336 KB
testcase_26 AC 496 ms
88,696 KB
testcase_27 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
A=list(map(int,input().split()))

inf=float("inf")
T=[[inf]*N for _ in range(N)]

for _ in range(M):
    x,y,z=map(int,input().split())
    x-=1; y-=1
    T[x][y]=T[y][x]=z

# WF
for i in range(N):
    T[i][i]=0

for k in range(N):
    Tk=T[k]
    for i in range(N):
        Ti=T[i]
        for j in range(N):
            Ti[j]=min(Ti[j], Ti[k]+Tk[j])

DP=[inf]*(1<<N); DP[0]=0
for i in range(N):
    DP[1<<i]=A[i]

for S in range(1,1<<N):
    U=[]
    V=[]
    SS=S
    for x in range(N):
        if SS&1:
            U.append(x)
        else:
            V.append(x)
        SS>>=1

    for v in V:
        L=inf
        Tv=T[v]
        for u in U:
            L=min(L,Tv[u])

        DP[S|(1<<v)]=min(DP[S|1<<v], DP[S]+A[v]+L)

popcount=[0]*(1<<N)
for S in range(1,1<<N):
    x=S&(-S)
    popcount[S]=popcount[S^x]+1

X=inf
for S in range(1<<N):
    if popcount[S]==K:
        X=min(X,DP[S])

print(X)
0