結果

問題 No.614 壊れたキャンパス
ユーザー mkawa2mkawa2
提出日時 2020-06-04 19:03:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 644 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 151,636 KB
最終ジャッジ日時 2024-11-29 22:04:12
合計ジャッジ時間 12,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,832 KB
testcase_01 AC 42 ms
151,636 KB
testcase_02 AC 38 ms
56,960 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,872 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 376 ms
86,016 KB
testcase_09 AC 217 ms
113,708 KB
testcase_10 AC 209 ms
91,520 KB
testcase_11 AC 907 ms
86,656 KB
testcase_12 AC 959 ms
86,912 KB
testcase_13 AC 919 ms
86,784 KB
testcase_14 AC 367 ms
86,128 KB
testcase_15 AC 188 ms
88,704 KB
testcase_16 AC 293 ms
87,552 KB
testcase_17 AC 192 ms
102,656 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]:
            for f, v in dp.items():
                if c in ndp:ndp[c]=min(ndp[c],v+abs(f-b))
                else:ndp[c]=v+abs(f-b)
        dp=ndp

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

    print(ans)

main()
0