結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2024-07-13 20:16:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 308,500 KB
最終ジャッジ日時 2024-07-13 20:16:50
合計ジャッジ時間 11,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,224 KB
testcase_01 AC 35 ms
52,112 KB
testcase_02 AC 35 ms
52,728 KB
testcase_03 AC 903 ms
308,012 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,956 KB
testcase_06 AC 516 ms
308,500 KB
testcase_07 AC 239 ms
166,008 KB
testcase_08 AC 333 ms
165,536 KB
testcase_09 WA -
testcase_10 AC 328 ms
165,468 KB
testcase_11 AC 296 ms
165,272 KB
testcase_12 AC 313 ms
165,188 KB
testcase_13 AC 332 ms
141,748 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 503 ms
208,980 KB
testcase_17 AC 36 ms
52,080 KB
testcase_18 AC 343 ms
163,808 KB
testcase_19 WA -
testcase_20 AC 305 ms
165,676 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)

INF = 1 << 60
N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

m = {x: a for x, a in zip(X, A)}

memo = {}
def f(x: int, used) -> int:
    if x in memo: return memo[x]
    if x not in m: return 0
    if x in used: return -INF
    used.add(x)

    d = m[x]
    res = f(x+d, used) + d
    if x-d not in used:
        res = max(res, f(x-d, used) - d)
    # res = max(f(x-d, used) - d, f(x+d, used) + d)
    memo[x] = res
    return res


for x in X:
    used = set()
    print(f(x, used))
0