結果

問題 No.1950 片道きゃっちぼーる
ユーザー pitPpitP
提出日時 2022-05-20 23:26:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 191,656 KB
最終ジャッジ日時 2024-09-20 09:52:35
合計ジャッジ時間 11,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,120 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 323 ms
168,592 KB
testcase_04 WA -
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 268 ms
150,412 KB
testcase_07 AC 326 ms
187,432 KB
testcase_08 AC 948 ms
191,656 KB
testcase_09 WA -
testcase_10 AC 483 ms
162,720 KB
testcase_11 AC 320 ms
165,528 KB
testcase_12 AC 350 ms
166,044 KB
testcase_13 AC 446 ms
155,780 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 253 ms
139,596 KB
testcase_17 AC 45 ms
53,504 KB
testcase_18 AC 533 ms
183,076 KB
testcase_19 WA -
testcase_20 AC 331 ms
165,412 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


n = int(input())
x = list(map(int,input().split()))
a = list(map(int,input().split()))
d = defaultdict(int)
hq = []

for i in range(n):
    d[x[i]] = a[i]
    hq.append([-x[i]-a[i] , i])

ans = [0] * n
hq.sort()

for j in range(n):
    dist,i = hq[j]
    ans[i] = max(a[i] , d[x[i] + a[i]] + a[i] , d[x[i] - a[i]] - a[i])
    d[x[i]] = ans[i]

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