結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
103,824 KB
testcase_01 AC 126 ms
104,184 KB
testcase_02 AC 126 ms
103,904 KB
testcase_03 AC 104 ms
96,536 KB
testcase_04 AC 139 ms
105,976 KB
testcase_05 AC 105 ms
99,068 KB
testcase_06 AC 86 ms
90,248 KB
testcase_07 AC 134 ms
106,168 KB
testcase_08 AC 71 ms
79,968 KB
testcase_09 AC 108 ms
100,556 KB
testcase_10 AC 157 ms
118,156 KB
testcase_11 AC 155 ms
117,936 KB
testcase_12 AC 179 ms
118,192 KB
testcase_13 AC 155 ms
118,024 KB
testcase_14 AC 152 ms
118,076 KB
testcase_15 AC 154 ms
118,012 KB
testcase_16 AC 157 ms
118,192 KB
testcase_17 AC 159 ms
117,812 KB
testcase_18 AC 156 ms
117,780 KB
testcase_19 AC 178 ms
118,076 KB
testcase_20 AC 153 ms
117,996 KB
testcase_21 AC 160 ms
118,028 KB
testcase_22 AC 159 ms
118,140 KB
testcase_23 AC 35 ms
52,336 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,960 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,808 KB
testcase_31 WA -
testcase_32 AC 36 ms
52,828 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 36 ms
52,736 KB
testcase_36 AC 35 ms
52,864 KB
testcase_37 WA -
testcase_38 AC 34 ms
52,112 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):
        if dp[i][j] == -INF: continue
        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