結果

問題 No.1690 Power Grid
ユーザー 👑 KazunKazun
提出日時 2021-09-24 22:49:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 753 ms / 3,000 ms
コード長 829 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,660 KB
実行使用メモリ 86,788 KB
最終ジャッジ日時 2024-07-05 11:05:55
合計ジャッジ時間 11,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,180 KB
testcase_01 AC 38 ms
53,084 KB
testcase_02 AC 59 ms
68,856 KB
testcase_03 AC 35 ms
52,800 KB
testcase_04 AC 37 ms
53,492 KB
testcase_05 AC 36 ms
52,732 KB
testcase_06 AC 430 ms
79,620 KB
testcase_07 AC 434 ms
79,732 KB
testcase_08 AC 463 ms
82,356 KB
testcase_09 AC 468 ms
82,284 KB
testcase_10 AC 635 ms
82,560 KB
testcase_11 AC 442 ms
79,976 KB
testcase_12 AC 39 ms
52,668 KB
testcase_13 AC 61 ms
71,324 KB
testcase_14 AC 128 ms
76,728 KB
testcase_15 AC 675 ms
84,344 KB
testcase_16 AC 576 ms
80,732 KB
testcase_17 AC 419 ms
80,208 KB
testcase_18 AC 195 ms
78,324 KB
testcase_19 AC 606 ms
80,672 KB
testcase_20 AC 563 ms
83,380 KB
testcase_21 AC 753 ms
85,832 KB
testcase_22 AC 597 ms
80,404 KB
testcase_23 AC 563 ms
80,228 KB
testcase_24 AC 651 ms
83,396 KB
testcase_25 AC 737 ms
85,972 KB
testcase_26 AC 617 ms
86,788 KB
testcase_27 AC 36 ms
52,768 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):
    for i in range(N):
        for j in range(N):
            T[i][j]=min(T[i][j], T[i][k]+T[k][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=[]
    for x in range(N):
        if (S>>x)&1:
            U.append(x)
        else:
            V.append(x)

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

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

popcount=lambda x:bin(x).count("1")

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

print(X)
0