結果

問題 No.1690 Power Grid
ユーザー tamatotamato
提出日時 2021-09-24 21:56:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 3,000 ms
コード長 1,387 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 107,220 KB
最終ジャッジ日時 2024-07-05 10:31:39
合計ジャッジ時間 8,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,544 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 323 ms
88,740 KB
testcase_07 AC 320 ms
88,356 KB
testcase_08 AC 323 ms
88,552 KB
testcase_09 AC 319 ms
88,680 KB
testcase_10 AC 54 ms
68,480 KB
testcase_11 AC 623 ms
105,100 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 57 ms
67,200 KB
testcase_14 AC 120 ms
77,944 KB
testcase_15 AC 709 ms
106,628 KB
testcase_16 AC 346 ms
88,528 KB
testcase_17 AC 238 ms
82,224 KB
testcase_18 AC 161 ms
79,292 KB
testcase_19 AC 341 ms
88,352 KB
testcase_20 AC 351 ms
88,412 KB
testcase_21 AC 50 ms
65,664 KB
testcase_22 AC 640 ms
96,692 KB
testcase_23 AC 675 ms
107,220 KB
testcase_24 AC 672 ms
100,628 KB
testcase_25 AC 704 ms
102,816 KB
testcase_26 AC 714 ms
104,840 KB
testcase_27 AC 37 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10 ** 17


def main():
    import sys
    input = sys.stdin.readline

    N, M, K = map(int, input().split())
    A = list(map(int, input().split()))
    dist = [[inf] * N for _ in range(N)]
    for _ in range(M):
        x, y, z = map(int, input().split())
        x -= 1
        y -= 1
        dist[x][y] = z
        dist[y][x] = z
    for v in range(N):
        dist[v][v] = 0

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

    dp = [inf] * (1 << N)
    dp[0] = 0
    for _ in range(K):
        dp_new = [inf] * (1 << N)
        for state in range(1 << N):
            if dp[state] >= inf:
                continue
            for i in range(N):
                if state >> i & 1:
                    continue
                state_new = state | (1 << i)
                if state == 0:
                    dp_new[state_new] = min(dp_new[state_new], dp[state] + A[i])
                else:
                    min_cost = inf
                    for j in range(N):
                        if state >> j & 1:
                            min_cost = min(min_cost, dist[i][j])
                    dp_new[state_new] = min(dp_new[state_new], dp[state] + A[i] + min_cost)
        dp = dp_new
    print(min(dp))


if __name__ == '__main__':
    main()
0