結果
問題 | No.127 門松もどき |
ユーザー | koyumeishi |
提出日時 | 2015-01-14 00:49:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,617 bytes |
コンパイル時間 | 884 ms |
コンパイル使用メモリ | 84,000 KB |
実行使用メモリ | 45,468 KB |
最終ジャッジ日時 | 2024-06-22 11:21:49 |
合計ジャッジ時間 | 7,384 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> using namespace std; int main(){ int n; cin >> n; vector<int> a(n+2, 0); for(int i=0; i<n; i++) cin >> a[i+1]; vector<int> l = a; sort(l.begin(), l.end()); l.erase(unique(l.begin(), l.end()), l.end()); for(int i=0; i<=n; i++){ a[i] = lower_bound(l.begin(), l.end(), a[i]) - l.begin(); } vector<int> b(a.rbegin(), a.rend()); int ans = 0; //dp[i][j] := 残りの左端が左からi, 右端が右からjのとき最大の門松もどきの長さ vector<vector<int>> dp(n+1, vector<int>(n+1, 0)); for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ if(i>j){ //bを進める for(int k = i; k<=n-i; k++){ if(a[i-1] < b[k]){ dp[i][k] = max(dp[i][k], dp[i][j]+1); ans = max(ans , dp[i][k]); } } }else{ //aを進める for(int k = j+1; k<=n-j; k++){ if(b[j] < a[k]){ dp[k][j] = max(dp[k][j], dp[i][j]+1); ans = max(ans, dp[k][j]); } } } } } dp = vector<vector<int>>(n+1, vector<int>(n+1, 0)); swap(a,b); for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ if(i>j){ //bを進める for(int k = i; k<=n-i; k++){ if(a[i-1] < b[k]){ dp[i][k] = max(dp[i][k], dp[i][j]+1); ans = max(ans , dp[i][k]); } } }else{ //aを進める for(int k = j+1; k<=n-j; k++){ if(b[j] < a[k]){ dp[k][j] = max(dp[k][j], dp[i][j]+1); ans = max(ans, dp[k][j]); } } } } } cout << ans << endl; return 0; }