結果

問題 No.1 道のショートカット
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-23 13:24:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 729 ms / 5,000 ms
コード長 804 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,504 KB
最終ジャッジ日時 2024-07-20 16:39:13
合計ジャッジ時間 27,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
43,856 KB
testcase_01 AC 536 ms
44,488 KB
testcase_02 AC 531 ms
44,100 KB
testcase_03 AC 534 ms
44,504 KB
testcase_04 AC 544 ms
43,976 KB
testcase_05 AC 538 ms
44,496 KB
testcase_06 AC 537 ms
43,972 KB
testcase_07 AC 541 ms
44,360 KB
testcase_08 AC 553 ms
44,104 KB
testcase_09 AC 540 ms
44,232 KB
testcase_10 AC 542 ms
43,816 KB
testcase_11 AC 591 ms
44,496 KB
testcase_12 AC 630 ms
43,976 KB
testcase_13 AC 620 ms
43,848 KB
testcase_14 AC 537 ms
44,356 KB
testcase_15 AC 541 ms
44,232 KB
testcase_16 AC 536 ms
44,236 KB
testcase_17 AC 534 ms
44,236 KB
testcase_18 AC 536 ms
44,376 KB
testcase_19 AC 535 ms
44,100 KB
testcase_20 AC 546 ms
44,116 KB
testcase_21 AC 533 ms
43,980 KB
testcase_22 AC 527 ms
44,084 KB
testcase_23 AC 729 ms
44,108 KB
testcase_24 AC 714 ms
43,972 KB
testcase_25 AC 549 ms
44,224 KB
testcase_26 AC 553 ms
44,176 KB
testcase_27 AC 679 ms
44,488 KB
testcase_28 AC 539 ms
44,360 KB
testcase_29 AC 562 ms
43,852 KB
testcase_30 AC 546 ms
44,236 KB
testcase_31 AC 570 ms
43,892 KB
testcase_32 AC 588 ms
44,232 KB
testcase_33 AC 561 ms
43,980 KB
testcase_34 AC 655 ms
44,216 KB
testcase_35 AC 544 ms
44,232 KB
testcase_36 AC 551 ms
43,980 KB
testcase_37 AC 535 ms
43,848 KB
testcase_38 AC 542 ms
43,972 KB
testcase_39 AC 546 ms
44,108 KB
testcase_40 AC 535 ms
43,848 KB
testcase_41 AC 537 ms
44,492 KB
testcase_42 AC 535 ms
44,104 KB
testcase_43 AC 539 ms
44,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import numpy as np
if __name__ == '__main__':
    INF = 10000000
    n = int(input())
    c = int(input())
    v = int(input())
    s = list(map(int, input().split(" ")))
    t = list(map(int, input().split(" ")))
    y = list(map(int, input().split(" ")))
    m = list(map(int, input().split(" ")))
    vl = [ [] for i in range(n)]
    for i in range(v):
        vl[s[i]-1].append((t[i]-1, y[i], m[i]))
    t = np.full((n, c+1), INF)
    t[0,0] = 0
    for i in range(n):
        for j in range(c+1):
            if t[i, j] == INF:
                continue
            for tt, yy, mm in vl[i]:
                if j+yy <= c:
                    t[tt, j+yy] = min(t[i, j] + mm, t[tt, j+yy])
    a = min(t[n-1, :])
    if a == INF:
        a = -1
    print(a)
0