結果

問題 No.2854 -1 Subsequence
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2024-08-25 16:31:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 206,156 KB
実行使用メモリ 14,264 KB
最終ジャッジ日時 2024-08-25 16:32:06
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,108 KB
testcase_01 AC 73 ms
11,648 KB
testcase_02 AC 81 ms
12,012 KB
testcase_03 AC 44 ms
8,064 KB
testcase_04 AC 89 ms
13,048 KB
testcase_05 AC 58 ms
9,344 KB
testcase_06 AC 33 ms
6,944 KB
testcase_07 AC 87 ms
12,816 KB
testcase_08 AC 14 ms
6,944 KB
testcase_09 AC 63 ms
10,112 KB
testcase_10 AC 105 ms
14,128 KB
testcase_11 AC 95 ms
14,128 KB
testcase_12 AC 95 ms
14,168 KB
testcase_13 AC 94 ms
14,124 KB
testcase_14 AC 93 ms
14,152 KB
testcase_15 AC 94 ms
14,248 KB
testcase_16 AC 98 ms
14,188 KB
testcase_17 AC 93 ms
14,228 KB
testcase_18 AC 94 ms
14,100 KB
testcase_19 AC 95 ms
14,152 KB
testcase_20 AC 98 ms
14,208 KB
testcase_21 WA -
testcase_22 AC 102 ms
14,172 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, Min = 1e9; cin >> N;
  bool B = true;
  vector DP(N + 1, vector<long long>(2, -1e18));
  DP.at(0).at(0) = 0;
  for (int i = 0; i < N; i++) {
    int A; cin >> A;
    if (A <= 0) B = false;
    else Min = min(Min, A);
    DP.at(i + 1).at(1) = max(DP.at(i).at(1), DP.at(i).at(0) + A * -1);
    DP.at(i + 1).at(0) = max(DP.at(i).at(0), DP.at(i).at(1) + A);
  }
  cout << (B ? (long long)-Min : max(DP.at(N).at(0), DP.at(N).at(1))) << endl;
}
0