結果

問題 No.1 道のショートカット
ユーザー rpy3cpprpy3cpp
提出日時 2015-03-25 22:41:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,198 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-08 03:50:01
合計ジャッジ時間 2,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import heapq

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()))
    return N, C, V, S, T, Y, M

def solve(N, C, V, S, T, Y, M):
    Es = init_Es(N, S, T, Y, M)
    hq = []
    pos = 1
    time = 0
    cost = 0
    status = (time, cost, pos)
    heapq.heappush(hq, status)
    t = [float('inf') for i in range(N + 1)]
    while hq:
        time, cost, pos = heapq.heappop(hq)
        if pos == N:
            return time
        for new_pos, dif_cost, dif_time in Es[pos]:
            new_cost = cost + dif_cost
            new_time = time + dif_time
            if t[new_pos] > new_time and new_cost <= C:
                t[new_pos] = new_time
                status = (new_time, new_cost, new_pos)
                heapq.heappush(hq, status)
    return -1

def init_Es(N, S, T, Y, M):
    Es = [[] for i in range(N+1)]
    for s, t, y, m in zip(S, T, Y, M):
        Es[s].append((t, y, m))
    return Es


if __name__ == '__main__':
    N, C, V, S, T, Y, M = read_data()
    print(solve(N, C, V, S, T, Y, M))
0