結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー H3PO4H3PO4
提出日時 2020-09-01 09:15:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,572 KB
最終ジャッジ日時 2024-11-17 19:34:09
合計ジャッジ時間 15,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 432 ms
43,928 KB
testcase_01 AC 452 ms
44,316 KB
testcase_02 AC 432 ms
44,572 KB
testcase_03 AC 432 ms
44,188 KB
testcase_04 AC 440 ms
44,444 KB
testcase_05 AC 431 ms
44,180 KB
testcase_06 AC 454 ms
44,316 KB
testcase_07 AC 466 ms
44,200 KB
testcase_08 AC 476 ms
43,932 KB
testcase_09 AC 467 ms
44,036 KB
testcase_10 AC 467 ms
44,448 KB
testcase_11 AC 475 ms
43,928 KB
testcase_12 AC 463 ms
44,184 KB
testcase_13 AC 466 ms
43,936 KB
testcase_14 AC 487 ms
44,060 KB
testcase_15 AC 470 ms
44,188 KB
testcase_16 AC 469 ms
44,312 KB
testcase_17 AC 490 ms
44,184 KB
testcase_18 AC 476 ms
44,188 KB
testcase_19 AC 468 ms
44,056 KB
testcase_20 AC 454 ms
44,184 KB
testcase_21 AC 451 ms
44,312 KB
testcase_22 AC 460 ms
44,316 KB
testcase_23 AC 453 ms
44,180 KB
testcase_24 AC 446 ms
43,804 KB
testcase_25 AC 454 ms
44,448 KB
testcase_26 AC 456 ms
44,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

Gx, Gy, N, F = map(int, input().split())

dp = np.repeat(np.arange(Gx + 1)[None, :], Gy + 1, axis=0) \
     + np.repeat(np.arange(Gy + 1)[:, None], Gx + 1, axis=1)
dp *= F

for _ in range(N):
    X, Y, C = map(int, input().split())
    dp[Y:, X:] = np.minimum(dp[Y:, X:], dp[:Gy + 1 - Y, :Gx + 1 - X] + C)
print(dp[-1, -1])
0