結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2024-07-13 20:17:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 309,412 KB
最終ジャッジ日時 2024-07-13 20:17:40
合計ジャッジ時間 12,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,568 KB
testcase_01 AC 37 ms
53,068 KB
testcase_02 AC 37 ms
52,756 KB
testcase_03 AC 1,015 ms
307,628 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,212 KB
testcase_06 AC 515 ms
309,412 KB
testcase_07 AC 255 ms
165,752 KB
testcase_08 AC 369 ms
165,340 KB
testcase_09 WA -
testcase_10 AC 362 ms
165,604 KB
testcase_11 AC 327 ms
165,580 KB
testcase_12 AC 352 ms
165,696 KB
testcase_13 AC 363 ms
142,400 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 515 ms
208,384 KB
testcase_17 AC 38 ms
52,520 KB
testcase_18 AC 391 ms
163,872 KB
testcase_19 WA -
testcase_20 AC 322 ms
165,520 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