結果

問題 No.2854 -1 Subsequence
ユーザー noriocnorioc
提出日時 2024-08-25 18:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 118,232 KB
最終ジャッジ日時 2024-08-25 18:38:34
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
103,856 KB
testcase_01 AC 124 ms
104,300 KB
testcase_02 AC 123 ms
104,104 KB
testcase_03 AC 95 ms
96,612 KB
testcase_04 AC 134 ms
105,964 KB
testcase_05 AC 108 ms
99,188 KB
testcase_06 AC 100 ms
90,084 KB
testcase_07 AC 134 ms
106,436 KB
testcase_08 AC 69 ms
79,760 KB
testcase_09 AC 105 ms
100,624 KB
testcase_10 AC 153 ms
117,920 KB
testcase_11 AC 151 ms
118,164 KB
testcase_12 AC 159 ms
118,184 KB
testcase_13 AC 151 ms
118,036 KB
testcase_14 AC 148 ms
118,048 KB
testcase_15 AC 154 ms
118,040 KB
testcase_16 AC 152 ms
117,796 KB
testcase_17 AC 157 ms
118,044 KB
testcase_18 AC 153 ms
118,028 KB
testcase_19 AC 151 ms
118,176 KB
testcase_20 AC 144 ms
117,980 KB
testcase_21 AC 144 ms
118,036 KB
testcase_22 AC 152 ms
118,232 KB
testcase_23 AC 36 ms
53,532 KB
testcase_24 AC 36 ms
52,132 KB
testcase_25 AC 35 ms
54,044 KB
testcase_26 AC 34 ms
52,864 KB
testcase_27 AC 36 ms
53,536 KB
testcase_28 AC 36 ms
52,992 KB
testcase_29 AC 43 ms
53,084 KB
testcase_30 AC 36 ms
53,076 KB
testcase_31 AC 36 ms
52,080 KB
testcase_32 AC 36 ms
52,868 KB
testcase_33 AC 35 ms
52,876 KB
testcase_34 AC 35 ms
52,508 KB
testcase_35 AC 34 ms
52,228 KB
testcase_36 AC 32 ms
52,888 KB
testcase_37 AC 33 ms
53,144 KB
testcase_38 AC 35 ms
52,820 KB
testcase_39 AC 34 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[-INF] * 2 for _ in range(N+1)]
# dp[i][j]
# i : i 番目までみて
# j : 長さ j の部分列のときの j mod 2
# のスコアの最大値
for i, a in enumerate(A):
    for j in range(2):
        dp[i+1][j] = dp[i][j]

    dp[i+1][1] = max(dp[i+1][1], -a)
    for j in range(2):
        k = (j+1) % 2
        sgn = 1 if k == 0 else -1
        dp[i+1][k] = max(dp[i+1][k], dp[i][j] + sgn * a)

ans = max(dp[N])
print(ans)
0