結果
問題 | No.2854 -1 Subsequence |
ユーザー | jupiter_68 |
提出日時 | 2024-08-25 13:59:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,846 bytes |
コンパイル時間 | 3,561 ms |
コンパイル使用メモリ | 231,904 KB |
実行使用メモリ | 15,840 KB |
最終ジャッジ日時 | 2024-08-25 13:59:29 |
合計ジャッジ時間 | 5,822 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
13,372 KB |
testcase_01 | AC | 32 ms
12,880 KB |
testcase_02 | AC | 34 ms
13,240 KB |
testcase_03 | AC | 18 ms
8,704 KB |
testcase_04 | AC | 37 ms
14,476 KB |
testcase_05 | AC | 26 ms
10,240 KB |
testcase_06 | AC | 15 ms
7,168 KB |
testcase_07 | AC | 36 ms
14,124 KB |
testcase_08 | AC | 7 ms
6,944 KB |
testcase_09 | AC | 26 ms
11,008 KB |
testcase_10 | AC | 41 ms
15,688 KB |
testcase_11 | AC | 40 ms
15,840 KB |
testcase_12 | AC | 45 ms
15,708 KB |
testcase_13 | AC | 43 ms
15,760 KB |
testcase_14 | AC | 42 ms
15,740 KB |
testcase_15 | AC | 43 ms
15,788 KB |
testcase_16 | AC | 41 ms
15,776 KB |
testcase_17 | AC | 40 ms
15,764 KB |
testcase_18 | AC | 40 ms
15,680 KB |
testcase_19 | AC | 39 ms
15,772 KB |
testcase_20 | AC | 40 ms
15,808 KB |
testcase_21 | AC | 38 ms
15,672 KB |
testcase_22 | AC | 43 ms
15,732 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,944 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,940 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,944 KB |
testcase_39 | WA | - |
ソースコード
//#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; using P = pair<ll, ll>; using vi = vector<ll>; using vd = vector<ld>; using vP = vector<P>; using vvi = vector<vector<ll>>; using vvd = vector<vector<ld>>; using vvP = vector<vector<P>>; using vvvi = vector<vector<vector<ll>>>; using vvvd = vector<vector<vector<ld>>>; using vvvP = vector<vector<vector<P>>>; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using Mint = modint1000000007; using vm = vector<mint>; using vM = vector<Mint>; using vvm = vector<vector<mint>>; using vvM = vector<vector<Mint>>; using vvvm = vector<vector<vector<mint>>>; using vvvM = vector<vector<vector<Mint>>>; #endif #define rrep(i, n) for (ll i = (n)-1; (i) >= 0; --(i)) #define rep(i, n) for (ll i = 0; (i) < (n); ++(i)) #define reps(i, n) for (ll i = 1; (i) <= (n); ++(i)) #define Rep(i,a,b) for(ll i = (a); i <= (b); i++) #define all(a) (a).begin(),(a).end() const ll MOD = 998244353; #define Yes(b) ((b)?"Yes":"No") #define YES(b) ((b)?"YES":"NO") #define ft first #define sd second bool chmin(ll& a, ll b) { return a > b ? a = b, 1 : 0; } bool chmax(ll& a, ll b) { return a < b ? a = b, 1 : 0; } // array s90 = { 0, 1, 0, -1 }, c90 = { 1, 0, -1, 0 }; // array s45 = { 0, 1, 1, 1, 0, -1, -1, -1 }, c45 = { 1, 1, 0, -1, -1, -1, 0, 1 }; signed main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(20); ll N; cin >> N; vi a(N+1); reps(i, N) cin >> a[i]; vvi dp(N+1, vi(2, -4e18)); dp[0][0] = 0; reps(i, N){ dp[i][0] = max(dp[i-1][0], dp[i-1][1] + a[i]); dp[i][1] = max(dp[i-1][1], dp[i-1][0] - a[i]); } cout << max(dp[N][0], dp[N][1]) << endl; }