結果

問題 No.1950 片道きゃっちぼーる
ユーザー pitPpitP
提出日時 2022-05-20 22:58:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 210,720 KB
最終ジャッジ日時 2024-09-20 09:21:26
合計ジャッジ時間 20,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 1,057 ms
189,260 KB
testcase_04 WA -
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 931 ms
147,920 KB
testcase_07 AC 994 ms
210,720 KB
testcase_08 AC 1,304 ms
201,784 KB
testcase_09 WA -
testcase_10 AC 1,058 ms
185,220 KB
testcase_11 AC 895 ms
170,584 KB
testcase_12 AC 994 ms
184,164 KB
testcase_13 AC 861 ms
162,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 939 ms
146,688 KB
testcase_17 AC 40 ms
53,888 KB
testcase_18 AC 1,085 ms
199,808 KB
testcase_19 WA -
testcase_20 AC 912 ms
170,576 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import heapq


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]
    heapq.heappush(hq,[-x[i]-a[i] , i])

ans = [0] * n

while hq:
    _,idx = heapq.heappop(hq)
    ans[idx] = max(a[idx] , d[x[idx] + a[idx]] + a[idx] , d[x[idx] - a[idx]] - a[idx])
    d[x[idx]] = ans[idx]

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