結果
問題 | No.127 門松もどき |
ユーザー | tubo28 |
提出日時 | 2015-01-15 15:43:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,732 bytes |
コンパイル時間 | 702 ms |
コンパイル使用メモリ | 65,200 KB |
実行使用メモリ | 74,380 KB |
最終ジャッジ日時 | 2024-06-22 11:39:56 |
合計ジャッジ時間 | 2,899 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
9,824 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
7,624 KB |
testcase_11 | AC | 3 ms
7,576 KB |
testcase_12 | AC | 68 ms
56,580 KB |
testcase_13 | AC | 95 ms
65,036 KB |
testcase_14 | AC | 91 ms
62,488 KB |
testcase_15 | AC | 130 ms
73,340 KB |
testcase_16 | AC | 87 ms
60,940 KB |
testcase_17 | AC | 86 ms
66,888 KB |
testcase_18 | AC | 76 ms
62,264 KB |
testcase_19 | AC | 44 ms
47,996 KB |
testcase_20 | AC | 43 ms
50,000 KB |
testcase_21 | AC | 21 ms
35,732 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> #include <cstring> #include <ctime> #include <string> #include <vector> #include <algorithm> #include <cmath> #include <sstream> #include <utility> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef pair<int,int> pii; #define all(c) (c).begin(), (c).end() #define loop(i,a,b) for(ll i=a; i<ll(b); i++) #define rep(i,b) loop(i,0,b) #define each(e,c) for(auto&e:c) #define pb push_back #define eb emplace_back #define mp make_pair #define mt make_tuple #define lb lower_bound #define ub upper_bound #ifdef DEBUG #define dump(...) (cerr<<#__VA_ARGS__<<" = "<<(DUMP(),__VA_ARGS__).str()<<" ["<<__LINE__<<"]"<<endl) struct DUMP:ostringstream{template<class T>DUMP &operator,(const T&t){if(this->tellp())*this<<", ";*this<<t;return *this;}}; #else #define dump(...) #endif template<class T> ostream& operator<<(ostream& os, vector<T> const& v){ rep(i,v.size()) os << v[i] << (i+1==v.size()?"":" "); return os; } int N; int A[100010]; int dp1[3010][3010]; int dp2[3010][3010]; int rec1(int,int); int rec2(int,int); int rec1(int l, int r){ int & res = dp1[l][r]; if(res!=-1) return res; if(l==r) return res = 1; if(A[l] < A[r]) return res = max(rec1(l,r-1), rec2(l+1,r)+1); return res = rec1(l,r-1); } int rec2(int l, int r){ int & res = dp2[l][r]; if(res!=-1) return res; if(l==r) return res = 1; if(A[r] < A[l]) return res = max(rec2(l+1,r), rec1(l,r-1)+1); return res = rec2(l+1,r); } int main(){ while(cin>>N && N){ rep(i,N) cin >> A[i]; rep(i,N)rep(j,N) dp1[i][j] = dp2[i][j] = -1; cout << max(rec1(0,N-1),rec2(0,N-1)) << endl; } }