結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | norioc |
提出日時 | 2024-07-15 09:18:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 873 bytes |
コンパイル時間 | 200 ms |
コンパイル使用メモリ | 82,268 KB |
実行使用メモリ | 433,636 KB |
最終ジャッジ日時 | 2024-07-15 09:18:33 |
合計ジャッジ時間 | 6,211 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
61,036 KB |
testcase_01 | AC | 39 ms
53,660 KB |
testcase_02 | AC | 38 ms
54,244 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
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 | -- | - |
ソースコード
from collections import defaultdict import sys sys.setrecursionlimit(10 ** 6) INF = 1 << 60 N = int(input()) X = list(map(int, input().split())) A = list(map(int, input().split())) x2i = {X[i]: i for i in range(N)} # 逆辺 : 人 i へ到達する人リスト r_adj = defaultdict(list) for i, (x, a) in enumerate(zip(X, A)): for xa in [x+a, x-a]: p = x2i.get(xa, -1) if p != -1: r_adj[p].append(i) # 人 p へ到達できる人は x まで到達できる def dfs(p, used: set): if p in used: return used used.add(p) for to in r_adj[p]: dfs(to, used) return used ans = [-INF] * N # 飛距離が大きい順に確定していく for i, xa in sorted([(i, X[i]+A[i]) for i in range(N)], key=lambda x: x[1], reverse=True): for p in dfs(i, set()): ans[p] = max(ans[p], xa - X[p]) print(*ans, sep='\n')