結果

問題 No.2854 -1 Subsequence
ユーザー VvyLwVvyLw
提出日時 2024-09-06 07:41:31
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,041 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 139,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 07:41:36
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
6,816 KB
testcase_01 AC 28 ms
6,940 KB
testcase_02 AC 30 ms
6,944 KB
testcase_03 AC 17 ms
6,940 KB
testcase_04 AC 32 ms
6,944 KB
testcase_05 AC 21 ms
6,940 KB
testcase_06 AC 13 ms
6,944 KB
testcase_07 AC 31 ms
6,944 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 23 ms
6,940 KB
testcase_10 AC 36 ms
6,940 KB
testcase_11 AC 36 ms
6,940 KB
testcase_12 AC 36 ms
6,944 KB
testcase_13 AC 36 ms
6,940 KB
testcase_14 AC 35 ms
6,940 KB
testcase_15 AC 35 ms
6,940 KB
testcase_16 AC 36 ms
6,940 KB
testcase_17 AC 36 ms
6,944 KB
testcase_18 AC 36 ms
6,940 KB
testcase_19 AC 36 ms
6,940 KB
testcase_20 AC 35 ms
6,944 KB
testcase_21 AC 34 ms
6,944 KB
testcase_22 AC 39 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 2 ms
6,944 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,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 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,944 KB
testcase_35 AC 1 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 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <valarray>
#include <limits>
#include <ranges>
namespace man {
constexpr inline void chmax(int64_t &a, const int64_t b) noexcept {
    if(a < b) {
        a = b;
    }
}
}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    int n;
    std::cin >> n;
    std::valarray<int> a(n);
    for(auto &e: a) {
        std::cin >> e;
    }
    std::valarray<int64_t> dp(2);
    dp[1] = std::numeric_limits<int>::min();
    for(const auto &i: std::views::iota(0, n)) {
        std::valarray ndp = dp;
        man::chmax(ndp[0], dp[0]);
        man::chmax(ndp[0], dp[1] + a[i]);
        man::chmax(ndp[1], dp[1]);
        man::chmax(ndp[1], dp[0] - a[i]);
        dp.swap(ndp);
    }
    dump(dp);
    const auto ret = dp.max();
    if(ret == 0) {
        std::cout << -a.min() << '\n';
        std::exit(0);
    }
    std::cout << ret << '\n';
}
0