結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2022-05-21 00:47:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 99,140 KB
最終ジャッジ日時 2024-09-20 10:52:11
合計ジャッジ時間 14,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 722 ms
99,140 KB
testcase_04 WA -
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 697 ms
92,412 KB
testcase_07 AC 484 ms
52,376 KB
testcase_08 AC 540 ms
52,504 KB
testcase_09 WA -
testcase_10 AC 588 ms
49,664 KB
testcase_11 AC 606 ms
49,796 KB
testcase_12 AC 612 ms
49,672 KB
testcase_13 AC 662 ms
45,120 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 732 ms
65,524 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 574 ms
46,584 KB
testcase_19 WA -
testcase_20 AC 515 ms
51,760 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)

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

memo = [0] * N


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

    memo[p] = X[p] + A[p]
    for s in (1, -1):
        x = X[p] + A[p] * s
        if x in x2i:
            j = x2i[x]
            memo[p] = max(memo[p], dfs(j))
    return memo[p]


for i in range(N):
    dfs(i)

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