結果

問題 No.614 壊れたキャンパス
ユーザー mkawa2mkawa2
提出日時 2020-06-04 18:57:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 152,148 KB
最終ジャッジ日時 2024-11-29 20:43:31
合計ジャッジ時間 12,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,960 KB
testcase_01 AC 43 ms
152,148 KB
testcase_02 AC 42 ms
57,216 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 247 ms
113,840 KB
testcase_10 AC 266 ms
91,904 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 242 ms
88,832 KB
testcase_16 WA -
testcase_17 AC 210 ms
102,912 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.readline().split())

def main():
    inf=10**16
    n,m,k,s,t=MI()
    to=[[] for _ in range(n-1)]
    for _ in range(m):
        a,b,c=MI()
        to[a-1].append((b,c))

    dp={s:0}
    for i in range(n-1):
        if not to[i]:
            print(-1)
            exit()
        ndp={}
        for b,c in to[i]:
            ndp[c]=inf
            for f, v in dp.items():
                ndp[c]=min(ndp[c],v+abs(f-b))
        dp=ndp

    ans=inf
    for f,v in dp.items():
        ans=min(ans,v+abs(f-t))

    print(ans)

main()
0