結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー HaaHaa
提出日時 2021-01-29 21:50:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 168,532 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-27 08:04:20
合計ジャッジ時間 3,064 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 44 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 16 ms
5,376 KB
testcase_05 AC 73 ms
9,472 KB
testcase_06 AC 74 ms
9,472 KB
testcase_07 AC 74 ms
9,440 KB
testcase_08 AC 72 ms
9,504 KB
testcase_09 AC 59 ms
9,600 KB
testcase_10 AC 57 ms
9,472 KB
testcase_11 AC 59 ms
9,392 KB
testcase_12 AC 59 ms
9,444 KB
testcase_13 AC 59 ms
9,472 KB
testcase_14 AC 60 ms
9,472 KB
testcase_15 AC 60 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=1000000007;
constexpr ll INF=1e18;

bool kad(int a, int b, int c){
    if(a==c)
        return 0;
    if(a>b&&b<c)
        return 1;
    if(a<b&&b>c)
        return 1;
    return 0;
}

int main(){
    int t; cin >> t;
    while(t--){
        int n; cin >> n;
        VI a(n); REP(i,n) cin >> a[i];
        ll ans=0;
        REP(k,3){
            VI dp(n*3,0);
            REP(i,n-2){
                dp[k+i+3]=max(dp[k+i+3],dp[k+i+2]);
                if(kad(a[(k+i)%n],a[(k+i+1)%n],a[(k+i+2)%n])){
                    dp[k+i+3]=max(dp[k+i+3],dp[k+i]+a[(k+i)%n]);
                }
            }
            ans=max(ans,dp[k+n]);
        }
        cout << ans << endl;
    }
    return 0;
}
0