結果

問題 No.1 道のショートカット
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-06 21:42:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,272 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-08 04:10:19
合計ジャッジ時間 3,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 51 ms
11,008 KB
testcase_09 AC 38 ms
10,880 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 32 ms
10,880 KB
testcase_16 WA -
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 33 ms
10,880 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 34 ms
10,752 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 32 ms
10,880 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 36 ms
10,624 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 32 ms
10,624 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 32 ms
10,880 KB
testcase_43 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    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()))
    cost = [[float('inf')] * N for i in range(N)]
    time = [[float('inf')] * N for i in range(N)]
    for s, t, y, m in zip(S, T, Y, M):
        cost[s-1][t-1] = y
        time[s-1][t-1] = m
    return N, C, V, cost, time


def solve(N, C, V, cost, time):
    INF = float('inf')
    dp = [[INF] * (C + 1) for i in range(N)]
    dp[0][0] = 0
    for pos in range(N):
        cost_pos = cost[pos]
        time_pos = time[pos]
        for np in range(pos + 1, N):
            nc = cost_pos[np]
            if nc == INF:
                continue
            nt = time_pos[np]
            dp_np = dp[np]
            for c, m in enumerate(dp[pos]):
                if m == INF:
                    continue
                ncc = nc + c
                if ncc <= C and dp_np[ncc] > nt + m:
                    dp_np[ncc] = nt + m
    min_time = min(dp[N-1])
    if min_time == INF:
        return -1
    else:
        return min_time

if __name__ == '__main__':
    N, C, V, cost, time = read_data()
    print(solve(N, C, V, cost, time))
0