結果

問題 No.1950 片道きゃっちぼーる
ユーザー siganaisiganai
提出日時 2022-05-21 01:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 713 ms / 3,000 ms
コード長 1,463 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 146,584 KB
最終ジャッジ日時 2024-09-20 10:56:44
合計ジャッジ時間 11,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
63,616 KB
testcase_01 AC 57 ms
63,744 KB
testcase_02 AC 57 ms
63,872 KB
testcase_03 AC 375 ms
146,072 KB
testcase_04 AC 431 ms
146,424 KB
testcase_05 AC 58 ms
64,000 KB
testcase_06 AC 367 ms
138,732 KB
testcase_07 AC 347 ms
135,792 KB
testcase_08 AC 573 ms
135,380 KB
testcase_09 AC 421 ms
145,288 KB
testcase_10 AC 429 ms
142,876 KB
testcase_11 AC 346 ms
135,840 KB
testcase_12 AC 366 ms
138,812 KB
testcase_13 AC 504 ms
144,240 KB
testcase_14 AC 501 ms
142,656 KB
testcase_15 AC 693 ms
142,904 KB
testcase_16 AC 363 ms
141,496 KB
testcase_17 AC 57 ms
63,872 KB
testcase_18 AC 425 ms
144,800 KB
testcase_19 AC 713 ms
142,868 KB
testcase_20 AC 346 ms
135,708 KB
testcase_21 AC 481 ms
146,076 KB
testcase_22 AC 468 ms
146,584 KB
権限があれば一括ダウンロードができます

ソースコード

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])
'''
g = [[] for _ in range(n)]
for i in range(n):
    idx = bisect.bisect_right(x,x[i] + a[i])
    if x[idx-1] == x[i] + a[i]:
        g[idx-1].append(i)
    idx = bisect.bisect_right(x,x[i] - a[i])
    if idx == 0:continue
    if x[idx-1] == x[i] - a[i]:
        g[idx-1].append(i)

p = [i for i in range(n)]
p.sort(key = lambda y:x[y]+a[y],reverse = True)
ans = [0] * n
for pp in p:
    if ans[pp]:continue
    ans[pp] = x[pp] + a[pp]
    que = deque([pp])
    while que:
        now = que.pop()
        for nex in g[now]:
            if ans[nex]:continue
            ans[nex] = ans[pp]
            que.appendleft(nex)

for i in range(n):
    print(ans[i] - x[i])
0