結果

問題 No.1950 片道きゃっちぼーる
ユーザー siganaisiganai
提出日時 2022-05-20 23:21:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 147,120 KB
最終ジャッジ日時 2024-09-20 09:45:08
合計ジャッジ時間 9,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,000 KB
testcase_01 AC 51 ms
64,000 KB
testcase_02 AC 53 ms
64,000 KB
testcase_03 AC 317 ms
146,512 KB
testcase_04 WA -
testcase_05 AC 49 ms
64,000 KB
testcase_06 AC 298 ms
144,284 KB
testcase_07 AC 290 ms
135,732 KB
testcase_08 AC 515 ms
135,324 KB
testcase_09 WA -
testcase_10 AC 374 ms
141,252 KB
testcase_11 AC 304 ms
135,336 KB
testcase_12 AC 285 ms
135,368 KB
testcase_13 AC 413 ms
145,952 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 317 ms
144,392 KB
testcase_17 AC 53 ms
64,000 KB
testcase_18 AC 377 ms
145,312 KB
testcase_19 WA -
testcase_20 AC 304 ms
140,960 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools

mod=998244353

import sys
input=sys.stdin.readline
n=int(input())
x=list(map(int,input().split()))
a=list(map(int,input().split()))
p = [i for i in range(n)]
p.sort(key = lambda y:x[y]+a[y],reverse = True)
ans = [-1] * n
for pp in p:
    ans[pp] = x[pp] + a[pp]
    idx = bisect.bisect_right(x,x[pp] + a[pp])
    if x[idx-1] == x[pp] + a[pp]:
        ans[pp] = max(ans[pp],ans[idx-1])
    idx = bisect.bisect_right(x,x[pp] - a[pp])
    if idx == 0:
        continue
    if x[idx-1] == x[pp] - a[pp]:
        ans[pp] = max(ans[pp],ans[idx-1])
for i in range(n):
    print(ans[i]-x[i])
0