結果

問題 No.1950 片道きゃっちぼーる
ユーザー siganaisiganai
提出日時 2022-05-20 23:26:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 147,372 KB
最終ジャッジ日時 2024-09-20 09:52:56
合計ジャッジ時間 17,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,548 KB
testcase_01 AC 55 ms
66,024 KB
testcase_02 AC 60 ms
64,624 KB
testcase_03 AC 719 ms
146,524 KB
testcase_04 WA -
testcase_05 AC 52 ms
65,112 KB
testcase_06 AC 712 ms
144,368 KB
testcase_07 AC 628 ms
136,180 KB
testcase_08 AC 1,031 ms
135,532 KB
testcase_09 WA -
testcase_10 AC 771 ms
141,576 KB
testcase_11 AC 703 ms
135,320 KB
testcase_12 AC 608 ms
135,572 KB
testcase_13 AC 810 ms
146,080 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 712 ms
144,864 KB
testcase_17 AC 53 ms
64,616 KB
testcase_18 AC 767 ms
145,664 KB
testcase_19 WA -
testcase_20 AC 731 ms
135,840 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 _ in range(5):
    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