結果

問題 No.2854 -1 Subsequence
ユーザー noriocnorioc
提出日時 2024-08-25 18:36:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 118,364 KB
最終ジャッジ日時 2024-08-25 18:36:32
合計ジャッジ時間 6,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
103,900 KB
testcase_01 AC 132 ms
104,092 KB
testcase_02 AC 132 ms
103,932 KB
testcase_03 AC 101 ms
96,648 KB
testcase_04 AC 144 ms
106,296 KB
testcase_05 AC 109 ms
99,164 KB
testcase_06 AC 91 ms
90,344 KB
testcase_07 AC 151 ms
106,540 KB
testcase_08 AC 74 ms
79,940 KB
testcase_09 AC 117 ms
100,420 KB
testcase_10 AC 169 ms
118,044 KB
testcase_11 AC 162 ms
118,060 KB
testcase_12 AC 161 ms
118,012 KB
testcase_13 AC 162 ms
118,288 KB
testcase_14 AC 164 ms
118,188 KB
testcase_15 AC 175 ms
117,916 KB
testcase_16 AC 163 ms
118,064 KB
testcase_17 AC 164 ms
117,920 KB
testcase_18 AC 162 ms
118,044 KB
testcase_19 AC 160 ms
117,912 KB
testcase_20 AC 160 ms
118,224 KB
testcase_21 AC 158 ms
118,012 KB
testcase_22 AC 163 ms
118,364 KB
testcase_23 AC 37 ms
51,964 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,980 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
52,732 KB
testcase_31 WA -
testcase_32 AC 37 ms
52,068 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
52,560 KB
testcase_36 AC 36 ms
52,484 KB
testcase_37 WA -
testcase_38 AC 36 ms
52,872 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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
# のスコアの最大値
dp[0][0] = 0
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