結果

問題 No.1950 片道きゃっちぼーる
ユーザー pitPpitP
提出日時 2022-05-21 13:42:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 211,728 KB
最終ジャッジ日時 2024-09-20 11:43:52
合計ジャッジ時間 17,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 42 ms
53,120 KB
testcase_03 AC 695 ms
193,768 KB
testcase_04 WA -
testcase_05 AC 41 ms
53,504 KB
testcase_06 AC 567 ms
170,356 KB
testcase_07 AC 634 ms
211,728 KB
testcase_08 AC 1,773 ms
207,424 KB
testcase_09 WA -
testcase_10 AC 806 ms
186,616 KB
testcase_11 AC 660 ms
190,352 KB
testcase_12 AC 673 ms
191,508 KB
testcase_13 AC 726 ms
165,780 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 563 ms
160,960 KB
testcase_17 AC 40 ms
53,376 KB
testcase_18 AC 791 ms
202,752 KB
testcase_19 WA -
testcase_20 AC 646 ms
186,636 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])
    hq.append([-x[i]+a[i] , i])

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

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

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