結果

問題 No.134 走れ!サブロー君
ユーザー 👑 rin204rin204
提出日時 2022-11-03 00:53:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 800 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 79,768 KB
最終ジャッジ日時 2024-07-17 12:29:43
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,688 KB
testcase_01 AC 49 ms
63,524 KB
testcase_02 AC 37 ms
53,280 KB
testcase_03 AC 82 ms
76,520 KB
testcase_04 AC 88 ms
76,652 KB
testcase_05 AC 100 ms
76,892 KB
testcase_06 AC 118 ms
77,084 KB
testcase_07 AC 172 ms
78,300 KB
testcase_08 AC 296 ms
79,768 KB
testcase_09 AC 287 ms
79,616 KB
testcase_10 AC 38 ms
53,076 KB
testcase_11 AC 37 ms
52,756 KB
testcase_12 AC 37 ms
52,892 KB
testcase_13 AC 37 ms
52,700 KB
testcase_14 AC 36 ms
53,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x0, y0 = map(float, input().split())
n = int(input())
xyw = [[x0, y0, 0]] + [list(map(float, input().split())) for _ in range(n)]
n += 1

def nex(bit, i, j):
    w = 0
    for k in range(n):
        if not bit >> k & 1:
            w += xyw[k][2]
    xi, yi, _ = xyw[i]
    xj, yj, _ = xyw[j]
    d = abs(xi - xj) + abs(yi - yj)
    return d * (w + 100) / 120

dp = [[1e18] * n for _ in range(1 << n)]
for i in range(1, n):
    dp[1 << i][i] = nex(0, 0, i) + xyw[i][2]

for bit in range(1, 1 << n):
    for i in range(n):
        if not bit >> i & 1:
            continue
        for j in range(n):
            if bit >> j & 1 and i != j:
                tmp = dp[bit ^ (1 << j)][i] + nex(bit ^ (1 << j), i, j) + xyw[j][2]
                dp[bit][j] = min(dp[bit][j], tmp)

ans = dp[-1][0]
print(ans)
0