結果

問題 No.2477 Drifting
ユーザー LyricalMaestroLyricalMaestro
提出日時 2025-01-01 16:28:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,473 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 151,952 KB
最終ジャッジ日時 2025-01-01 16:28:29
合計ジャッジ時間 9,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 671 ms
141,644 KB
testcase_01 AC 430 ms
121,260 KB
testcase_02 AC 671 ms
141,228 KB
testcase_03 WA -
testcase_04 AC 231 ms
97,912 KB
testcase_05 WA -
testcase_06 AC 636 ms
151,952 KB
testcase_07 AC 626 ms
151,944 KB
testcase_08 AC 559 ms
131,908 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 423 ms
122,912 KB
testcase_13 AC 37 ms
53,072 KB
testcase_14 AC 36 ms
52,736 KB
testcase_15 AC 37 ms
52,336 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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
        state_base_map[(a, b, c)] = MAX_INT

    dp = [[MAX_INT, MAX_INT] for _ in range(N)]
    prev = [[-2, -2] for _ in range(N)]
    dp[0][0] = 0
    prev[0][0] = -1
    for s_n in range(N):
        for idx in range(2):
            cost = dp[s_n][idx]
            prev_n = prev[s_n][idx]
            for next_n, w in next_nodes[s_n]:
                if (prev_n, s_n, next_n) in state_base_map:
                    continue

                new_cost = w + cost

                if dp[next_n][0] > new_cost:
                    dp[next_n][1] = dp[next_n][0]
                    dp[next_n][0] = new_cost
                    prev[next_n][1] = prev[next_n][0]
                    prev[next_n][0] = s_n
                elif dp[next_n][1] > new_cost:
                    dp[next_n][1] = new_cost
                    prev[next_n][1] = s_n
    
    
    answer = MAX_INT
    for cost in dp[-1]:
        answer = min(answer, cost)
    if answer == MAX_INT:
        print(-1)
    else:
        print(answer)




    





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