結果
問題 | No.614 壊れたキャンパス |
ユーザー | Mr.Fuku |
提出日時 | 2018-08-03 21:23:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 966 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 96,504 KB |
最終ジャッジ日時 | 2024-09-19 17:27:25 |
合計ジャッジ時間 | 10,109 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
17,692 KB |
testcase_01 | AC | 26 ms
10,752 KB |
testcase_02 | AC | 26 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
10,752 KB |
testcase_05 | AC | 27 ms
10,752 KB |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,841 ms
53,688 KB |
testcase_09 | AC | 1,727 ms
96,504 KB |
testcase_10 | AC | 1,116 ms
57,256 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
N,M,K,S,T = map(int,input().split()) roka = [] from_list = [[S,0]] to_list = [] ans = -1 def calc(from_list,to_list): next_list = [] for to in to_list: tmp_n = [to[1],float("inf")] for frm in from_list: step = abs(to[0]-frm[0])+frm[1] if tmp_n[1]>step: tmp_n[1]=step next_list.append(tmp_n[:]) return next_list[:] for i in range(M): roka.append(list(map(int,input().split()))) roka.sort() now_buil = 1 for rk in roka: if rk[0]==now_buil: to_list.append(rk[1:]) else: now_buil+=1 if rk[0]>now_buil: break else: from_list = calc(from_list,to_list) to_list = [rk[1:]] else: if now_buil+1 == N and M != 0: from_list = calc(from_list,to_list) ans = float("inf") for frm in from_list: step = abs(T-frm[0])+frm[1] if ans>step: ans=step print(ans)