結果
問題 | No.127 門松もどき |
ユーザー | mayoko_ |
提出日時 | 2015-01-14 08:54:50 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 118 ms / 5,000 ms |
コード長 | 1,162 bytes |
コンパイル時間 | 786 ms |
コンパイル使用メモリ | 73,704 KB |
実行使用メモリ | 74,240 KB |
最終ジャッジ日時 | 2024-12-23 21:51:45 |
合計ジャッジ時間 | 3,425 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
74,220 KB |
testcase_01 | AC | 29 ms
74,112 KB |
testcase_02 | AC | 30 ms
74,112 KB |
testcase_03 | AC | 30 ms
73,984 KB |
testcase_04 | AC | 117 ms
73,984 KB |
testcase_05 | AC | 31 ms
74,112 KB |
testcase_06 | AC | 37 ms
74,112 KB |
testcase_07 | AC | 30 ms
74,200 KB |
testcase_08 | AC | 32 ms
74,112 KB |
testcase_09 | AC | 30 ms
74,112 KB |
testcase_10 | AC | 32 ms
74,080 KB |
testcase_11 | AC | 30 ms
74,240 KB |
testcase_12 | AC | 75 ms
74,240 KB |
testcase_13 | AC | 91 ms
74,112 KB |
testcase_14 | AC | 84 ms
73,952 KB |
testcase_15 | AC | 105 ms
74,112 KB |
testcase_16 | AC | 85 ms
74,240 KB |
testcase_17 | AC | 94 ms
74,112 KB |
testcase_18 | AC | 81 ms
74,112 KB |
testcase_19 | AC | 60 ms
74,240 KB |
testcase_20 | AC | 60 ms
74,112 KB |
testcase_21 | AC | 44 ms
74,148 KB |
testcase_22 | AC | 118 ms
74,088 KB |
testcase_23 | AC | 115 ms
74,088 KB |
testcase_24 | AC | 91 ms
74,100 KB |
testcase_25 | AC | 106 ms
74,180 KB |
testcase_26 | AC | 66 ms
74,096 KB |
ソースコード
#include <sstream> #include <string> #include <vector> #include <map> #include <algorithm> #include <iostream> #include <utility> #include <set> #include <cctype> #include <queue> #include <stack> #include <cstdio> #include <cstdlib> #include <cmath> #define INF 1000000000 using namespace std; typedef long long ll; const int MAXN = 3010; int A[MAXN]; int dpL[MAXN][MAXN]; int dpR[MAXN][MAXN]; int main(void) { int N; int ret = 1; cin >> N; for (int i = 0; i < N; i++) { cin >> A[i]; } for (int i = 0; i < MAXN; i++) for (int j = 0; j < MAXN; j++) { dpL[i][j] = dpR[i][j] = 1; } for (int w = 1; w < N; w++) { for (int x = 0; x+w < N; x++) { dpL[x][x+w] = max(dpL[x][x+w], dpL[x][x+w-1]); dpR[x][x+w] = max(dpR[x][x+w], dpR[x+1][x+w]); if (A[x] < A[x+w]) { dpL[x][x+w] = max(dpL[x][x+w], 1 + dpR[x+1][x+w]); } if (A[x] > A[x+w]) { dpR[x][x+w] = max(dpR[x][x+w], dpL[x][x+w-1]+1); } ret = max(ret, max(dpL[x][x+w], dpR[x][x+w])); } } cout << ret << endl; return 0; }