結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2022-05-21 15:05:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,533 ms / 3,000 ms
コード長 749 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 149,732 KB
最終ジャッジ日時 2024-09-20 11:49:02
合計ジャッジ時間 22,849 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 1,063 ms
149,656 KB
testcase_04 AC 1,099 ms
149,732 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 993 ms
143,396 KB
testcase_07 AC 859 ms
105,612 KB
testcase_08 AC 1,228 ms
105,920 KB
testcase_09 AC 1,022 ms
125,596 KB
testcase_10 AC 1,040 ms
114,088 KB
testcase_11 AC 966 ms
113,300 KB
testcase_12 AC 966 ms
113,572 KB
testcase_13 AC 1,073 ms
108,560 KB
testcase_14 AC 1,008 ms
108,380 KB
testcase_15 AC 1,533 ms
138,032 KB
testcase_16 AC 1,051 ms
125,192 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 957 ms
105,848 KB
testcase_19 AC 1,532 ms
128,720 KB
testcase_20 AC 915 ms
105,576 KB
testcase_21 AC 966 ms
108,436 KB
testcase_22 AC 954 ms
107,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
sys.setrecursionlimit(10 ** 6)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')

N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))


x2i = {}
for i in range(N):
    x2i[X[i]] = i

# 逆辺
rev_adj = defaultdict(list)
for i in range(N):
    for s in (1, -1):
        x = X[i] + A[i] * s
        if x in x2i:
            rev_adj[x2i[x]].append(i)


memo = [0] * N


def dfs(p, x):
    if memo[p] != 0: return memo[p]
    memo[p] = x

    for nd in rev_adj[p]:
        dfs(nd, x)


xs = [(X[i] + A[i], i) for i in range(N)]

for x, i in sorted(xs, reverse=True):
    if memo[i] != 0: continue
    dfs(i, x)

for i in range(N):
    print(memo[i] - X[i])
0