結果

問題 No.2854 -1 Subsequence
ユーザー ryuuichiryuuichi
提出日時 2024-08-25 15:18:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,384 KB
最終ジャッジ日時 2024-08-25 15:18:25
合計ジャッジ時間 22,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 736 ms
45,100 KB
testcase_02 WA -
testcase_03 AC 422 ms
30,028 KB
testcase_04 WA -
testcase_05 AC 551 ms
35,792 KB
testcase_06 AC 352 ms
24,880 KB
testcase_07 WA -
testcase_08 AC 138 ms
16,048 KB
testcase_09 AC 620 ms
38,672 KB
testcase_10 AC 959 ms
55,892 KB
testcase_11 AC 963 ms
55,972 KB
testcase_12 AC 983 ms
55,888 KB
testcase_13 AC 987 ms
55,768 KB
testcase_14 AC 956 ms
56,008 KB
testcase_15 AC 1,005 ms
55,776 KB
testcase_16 AC 986 ms
55,716 KB
testcase_17 AC 944 ms
55,812 KB
testcase_18 AC 1,032 ms
55,896 KB
testcase_19 AC 991 ms
55,900 KB
testcase_20 AC 990 ms
53,456 KB
testcase_21 AC 963 ms
53,080 KB
testcase_22 AC 1,001 ms
58,384 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 27 ms
10,752 KB
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 31 ms
10,624 KB
testcase_33 AC 27 ms
10,752 KB
testcase_34 AC 27 ms
10,752 KB
testcase_35 AC 26 ms
10,752 KB
testcase_36 AC 28 ms
10,880 KB
testcase_37 AC 27 ms
10,752 KB
testcase_38 AC 28 ms
10,880 KB
testcase_39 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if N==1:
    print(-A[0])
    quit()
dp=[[-float("inf"),-float("inf")]for _ in range(N)]
#dp[i][偶数 偶数]=i個まで選択した時の最大(偶奇毎)
dp[0][1]=-A[0]
dp[1][1]=-(min(A[0],A[1]))
dp[1][0]=-A[0]+A[1]
""" for i in range(2,N):
    for j in range(2):
        dp[i][j]=max(dp[i-1][j],dp[i-1][j^1]+A[i]*(-1)**j) """


for i in range(1,N-1):
    for j in range(2):
        dp[i+1][j]=max(dp[i+1][j],dp[i][j])
        dp[i+1][j^1]=max(dp[i][j]+A[i+1]*(-1)**(j+1),dp[i+1][j^1])

print(max(max(dp)))
0