結果

問題 No.2477 Drifting
ユーザー LyricalMaestroLyricalMaestro
提出日時 2025-01-01 16:10:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,344 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 274,100 KB
最終ジャッジ日時 2025-01-01 16:10:34
合計ジャッジ時間 27,866 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 679 ms
175,856 KB
testcase_01 AC 505 ms
274,100 KB
testcase_02 AC 676 ms
175,728 KB
testcase_03 AC 370 ms
228,312 KB
testcase_04 AC 196 ms
91,360 KB
testcase_05 AC 332 ms
232,632 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 636 ms
109,564 KB
testcase_13 AC 36 ms
52,648 KB
testcase_14 AC 37 ms
52,936 KB
testcase_15 AC 38 ms
52,888 KB
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2477

MAX_INT = 10 ** 18

def main():
    N, M = map(int, input().split())
    next_nodes = [[] for _ in range(N)]
    for _ in range(M):
        u, v, w = map(int, input().split())
        next_nodes[u - 1].append((v - 1, w))

    K = int(input())
    state_base_map = {}
    for _ in range(K):
        a, b, c = map(int, input().split())
        a -= 1
        b -= 1
        c -= 1
        if (a, b) not in state_base_map:
            state_base_map[(a, b)] = set()
        state_base_map[(a, b)].add(c)

    dp = [{} for _ in range(N)]
    dp[0][-1] = 0
    for s_n in range(N):
        for prev_, cost in dp[s_n].items():
            
            forbiddens = set()
            if (prev_, s_n) in state_base_map:
                forbiddens = state_base_map[(prev_, s_n)]
            for next_n, w in next_nodes[s_n]:
                if next_n in forbiddens:
                    continue

                new_cost = w + cost
                if s_n not in dp[next_n]:
                    dp[next_n][s_n] = MAX_INT
                dp[next_n][s_n] = min(dp[next_n][s_n], new_cost)
    
    answer = MAX_INT
    for prev, cost in dp[-1].items():
        answer = min(answer, cost)
    if answer == MAX_INT:
        print(-1)
    else:
        print(answer)




    





if __name__ == "__main__":
    main()
0