結果

問題 No.2854 -1 Subsequence
ユーザー Daniel KDaniel K
提出日時 2024-08-25 14:21:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 1,694 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 116,764 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:21:57
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,812 KB
testcase_01 AC 21 ms
6,940 KB
testcase_02 AC 23 ms
6,940 KB
testcase_03 AC 14 ms
6,944 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 25 ms
6,948 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 19 ms
6,944 KB
testcase_10 AC 27 ms
6,944 KB
testcase_11 AC 28 ms
6,944 KB
testcase_12 AC 28 ms
6,944 KB
testcase_13 AC 28 ms
6,944 KB
testcase_14 AC 26 ms
6,940 KB
testcase_15 AC 26 ms
6,944 KB
testcase_16 AC 27 ms
6,940 KB
testcase_17 AC 27 ms
6,940 KB
testcase_18 AC 27 ms
6,944 KB
testcase_19 AC 27 ms
6,940 KB
testcase_20 AC 27 ms
6,940 KB
testcase_21 AC 26 ms
6,940 KB
testcase_22 AC 30 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 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,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <list>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <cmath>
#include <utility>
#include <sstream>
#include <queue>
#include <queue>

using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);

  bool has_last_pos = false;
  bool has_last_neg = false;
  int64_t best_if_last_pos = 0;
  int64_t best_if_last_neg = 0;

  int n;
  cin >> n;
  vector<int64_t> vals(n);
  for (int i = 0; i < n; ++i) {
    int64_t val;
    cin >> val;
    vals[i] = val;

    // can always start here
    int64_t best_last_neg = -val;
    if (has_last_neg) {
      best_last_neg = max(best_if_last_neg, best_last_neg);
    }
    if (has_last_pos) {
      best_last_neg = max(best_if_last_pos - val, best_last_neg);
    }

    bool has_new_last_pos = false;
    int64_t best_last_pos = 0;
    if (has_last_pos) {
      has_new_last_pos = true;
      best_last_pos = max(best_if_last_pos, best_last_pos);
    }
    if (has_last_neg) {
      has_new_last_pos = true;
      best_last_pos = max(best_if_last_neg + val, best_last_pos);
    }

    best_if_last_neg = best_last_neg;
    has_last_neg = true;

    if (has_new_last_pos) {
      best_if_last_pos = best_last_pos;
      has_last_pos = true;
    }
  }

  int64_t ans = best_if_last_neg;
  if (has_last_pos) {
    ans = max(best_if_last_pos, ans);
  }

  //  int64_t max_single_val = -vals[0];
  //  if (ans == 0) {
  //    for (int i = 1; i < n; ++i) {
  //      max_single_val = std::max(vals[i], max_single_val);
  //    }
  //    ans = max_single_val;
  //  }

  cout << ans << endl;

  return 0;
}
0