結果
問題 | No.1393 Median of Walk |
ユーザー | chineristAC |
提出日時 | 2020-11-09 21:23:37 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,532 KB |
実行使用メモリ | 91,848 KB |
最終ジャッジ日時 | 2024-07-19 22:46:21 |
合計ジャッジ時間 | 4,627 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
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")