結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
6,812 KB
testcase_01 AC 28 ms
6,940 KB
testcase_02 AC 29 ms
6,940 KB
testcase_03 AC 17 ms
6,940 KB
testcase_04 AC 33 ms
6,940 KB
testcase_05 AC 22 ms
6,944 KB
testcase_06 AC 13 ms
6,940 KB
testcase_07 AC 32 ms
6,940 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 23 ms
6,940 KB
testcase_10 AC 36 ms
6,944 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 36 ms
6,940 KB
testcase_15 AC 36 ms
6,940 KB
testcase_16 AC 36 ms
6,944 KB
testcase_17 AC 36 ms
6,940 KB
testcase_18 AC 36 ms
6,944 KB
testcase_19 AC 36 ms
6,944 KB
testcase_20 AC 35 ms
6,940 KB
testcase_21 AC 34 ms
6,940 KB
testcase_22 AC 39 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,940 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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