結果

問題 No.209 Longest Mountain Subsequence
ユーザー koyoprokoyopro
提出日時 2020-01-04 18:03:41
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,680 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 159,816 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-14 20:29:21
合計ジャッジ時間 10,311 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 802 ms
4,384 KB
testcase_01 AC 697 ms
4,376 KB
testcase_02 AC 624 ms
4,376 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 371 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

/*================================*/

int T,N;
int A[111];
typedef map<int, map<int, int>> DPType;
DPType DPa, DPb;

void count_dp(int A[], DPType *dp) {
    (*dp)[-1][-1]=0;
    FOR(i,-1,N)FOR(j,i,N)FOR(k,j+1,N){
        if (j>=0 && A[k] <= A[j]) continue;
        if (i>=0) {
            int prev = A[j] - A[i];
            int diff = A[k] - A[j];
            if (diff <= prev) continue;
        }
        (*dp)[j][k] = max((*dp)[j][k], (*dp)[i][j] + 1);
    }
}

signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin>>T;

    while(T--) {
        cin>>N;
        REP(i,N)cin>>A[i];
        DPa.clear();
        count_dp(A, &DPa);
        reverse(A, A+N);
        DPb.clear();
        count_dp(A, &DPb);
        int ans = 0;
        FOR(i,0,N) {
            int a = 0, b = 0;
            FOR(j,-1,i) {
                a = max(a, DPa[j][i]);
            }
            FOR(j,-1,N-i) {
                b = max(b, DPb[j][N-i-1]);
            }
            ans = max(ans, a + b - 1);
        }
        cout << ans << endl;
    }
    
    return 0;
}
0