結果
問題 | No.1368 サイクルの中に眠る門松列 |
ユーザー | norikame |
提出日時 | 2021-01-29 22:07:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 137 ms / 2,000 ms |
コード長 | 1,949 bytes |
コンパイル時間 | 2,392 ms |
コンパイル使用メモリ | 212,504 KB |
実行使用メモリ | 47,960 KB |
最終ジャッジ日時 | 2024-06-27 08:20:21 |
合計ジャッジ時間 | 4,709 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 54 ms
5,376 KB |
testcase_03 | AC | 12 ms
5,376 KB |
testcase_04 | AC | 21 ms
5,376 KB |
testcase_05 | AC | 136 ms
47,868 KB |
testcase_06 | AC | 137 ms
47,960 KB |
testcase_07 | AC | 137 ms
47,836 KB |
testcase_08 | AC | 137 ms
47,832 KB |
testcase_09 | AC | 118 ms
47,832 KB |
testcase_10 | AC | 118 ms
47,836 KB |
testcase_11 | AC | 118 ms
47,832 KB |
testcase_12 | AC | 118 ms
47,832 KB |
testcase_13 | AC | 118 ms
47,960 KB |
testcase_14 | AC | 119 ms
47,960 KB |
testcase_15 | AC | 118 ms
47,836 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; #define v(t) vector<t> #define p(t) pair<t, t> #define p2(t, s) pair<t, s> #define vp(t) v(p(t)) #define rep(i, n) for (int i=0,i##_len=((int)(n)); i<i##_len; ++i) #define rep2(i, a, n) for (int i=((int)(a)),i##_len=((int)(n)); i<=i##_len; ++i) #define repr(i, n) for (int i=((int)(n)-1); i>=0; --i) #define rep2r(i, a, n) for (int i=((int)(n)),i##_len=((int)(a)); i>=i##_len; --i) #define repi(itr, c) for (__typeof((c).begin()) itr=(c).begin(); itr!=(c).end(); ++itr) #define repir(itr, c) for (__typeof((c).rbegin()) itr=(c).rbegin(); itr!=(c).rend(); ++itr) #define sz(x) ((int)(x).size()) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define SORT(v, n) sort(v, v+n); #define VSORT(v) sort(v.begin(), v.end()); #define RSORT(x) sort(rall(x)); #define pb push_back #define eb emplace_back #define INF (1e9) #define LINF (1e18) #define PI (acos(-1)) #define EPS (1e-7) #define DEPS (1e-10) int main(){ int t; cin >> t; rep(i1, t) { int n; cin >> n; v(int) a(n); rep(i, n) cin >> a[i]; rep(i, 2) a.pb(a[i]); v(bool) b(n, true); rep(i, n) { if (a[i]==a[i+1] || a[i]==a[i+2] || a[i+1]==a[i+2]) b[i] = false; if (!(a[i+1]<a[i]&&a[i+1]<a[i+2]) && !(a[i+1]>a[i]&&a[i+1]>a[i+2])) b[i] = false; } v(v(v(ll))) dp(3, v(v(ll))(n-1, v(ll)(2))); rep(k, 3) rep2(i, 1, n-2) { dp[k][i][0] = max(dp[k][i][0], max(dp[k][i-1][0], dp[k][i-1][1])); ll pval = (i-3>=0?max(dp[k][i-3][0],dp[k][i-3][1]):0), add = (b[i+k-1]?a[i+k-1]:0); dp[k][i][1] = max(dp[k][i][1], pval+add); } ll ans = 0; rep(i, 3) rep(j, 2) ans = max(ans, dp[i][n-2][j]); cout << ans << endl; } return 0; }