結果

問題 No.127 門松もどき
ユーザー chocoruskchocorusk
提出日時 2019-05-24 00:02:20
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,322 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 99,040 KB
実行使用メモリ 100,976 KB
最終ジャッジ日時 2024-09-17 09:55:46
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 3 ms
9,812 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,948 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
8,788 KB
testcase_12 AC 61 ms
70,140 KB
testcase_13 AC 76 ms
80,216 KB
testcase_14 AC 70 ms
77,820 KB
testcase_15 AC 92 ms
88,024 KB
testcase_16 AC 68 ms
74,852 KB
testcase_17 AC 73 ms
80,856 KB
testcase_18 AC 65 ms
74,656 KB
testcase_19 AC 44 ms
59,660 KB
testcase_20 AC 44 ms
60,836 KB
testcase_21 AC 25 ms
42,272 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 97 ms
88,540 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long ll;
typedef pair<int, int> P;
int n;
int a[3001];
int dp[3001][3001], mx[2][3001][3001];
void solve(int l, int r){
    if(l>=r) return;
    if(dp[l][r]>=0) return;
    solve(l+1, r);
    solve(l, r-1);
    if(a[l]==a[r]){
        mx[0][l][r]=mx[0][l+1][r];
        mx[1][l][r]=mx[1][l+1][r];
    }else if(a[l]<a[r]){
        dp[l][r]=1+mx[1][l+1][r];
        mx[0][l][r]=max(mx[0][l][r-1], dp[l][r]);
        mx[1][l][r]=mx[1][l+1][r];
    }else{
        dp[l][r]=1+mx[0][l][r-1];
        mx[0][l][r]=mx[0][l][r-1];
        mx[1][l][r]=max(mx[1][l+1][r], dp[l][r]);
    }
}
int main()
{
    cin>>n;
    bool nuo=1;
    for(int i=0; i<n; i++){
        cin>>a[i];
        if(i>0 && a[i]!=a[0]) nuo=0;
    }
    if(nuo){
        cout<<1<<endl; return 0;
    }
    for(int i=0; i<n; i++) for(int j=i+1; j<n; j++) dp[i][j]=-1;
    solve(0, n-1);
    cout<<1+max(mx[0][0][n-1], mx[1][0][n-1])<<endl;
    return 0;
}
0