結果

問題 No.1393 Median of Walk
ユーザー chineristACchineristAC
提出日時 2020-11-09 21:23:37
言語 PyPy3
(7.3.13)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 822 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 87,168 KB
実行使用メモリ 89,760 KB
最終ジャッジ日時 2023-09-27 04:51:54
合計ジャッジ時間 5,735 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N,M = map(int,input().split())
edge = [tuple(map(int,input().split())) for i in range(M)]

cost = [[10**18 for j in range(N)] for i in range(N)]
for i in range(N):
    cost[i][i] = 0
for u,v,c in edge:
    for i in range(u):
        for j in range(v-1,N):
            cost[i][j] = min(cost[i][j],cost[i][u-1] + cost[v-1][j] + 1)

edge.sort(key=lambda x:x[2])
ans = [[-1 for i in range(N)] for j in range(N)]
for u,v,c in edge:
    for i in range(u):
        for j in range(v-1,N):
            cost[i][j] = min(cost[i][j],cost[i][u-1] + cost[v-1][j] - 1)
            if cost[i][j] <=0 and ans[i][j]==-1:
                ans[i][j] = c

Q = int(input())
res = [-1 for i in range(Q)]
for i in range(Q):
    s,t = map(int,input().split())
    res[i] = ans[s-1][t-1]

print(*res,sep="\n")
0