結果
問題 | No.127 門松もどき |
ユーザー | mayoko_ |
提出日時 | 2015-01-14 08:54:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 136 ms / 5,000 ms |
コード長 | 1,162 bytes |
コンパイル時間 | 597 ms |
コンパイル使用メモリ | 73,664 KB |
実行使用メモリ | 74,244 KB |
最終ジャッジ日時 | 2024-06-06 08:14:00 |
合計ジャッジ時間 | 3,640 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
74,108 KB |
testcase_01 | AC | 42 ms
74,108 KB |
testcase_02 | AC | 46 ms
74,036 KB |
testcase_03 | AC | 43 ms
74,140 KB |
testcase_04 | AC | 135 ms
74,088 KB |
testcase_05 | AC | 42 ms
74,212 KB |
testcase_06 | AC | 49 ms
74,220 KB |
testcase_07 | AC | 42 ms
73,984 KB |
testcase_08 | AC | 42 ms
74,156 KB |
testcase_09 | AC | 43 ms
74,188 KB |
testcase_10 | AC | 42 ms
73,992 KB |
testcase_11 | AC | 42 ms
74,244 KB |
testcase_12 | AC | 90 ms
73,956 KB |
testcase_13 | AC | 108 ms
74,192 KB |
testcase_14 | AC | 101 ms
73,944 KB |
testcase_15 | AC | 126 ms
74,128 KB |
testcase_16 | AC | 99 ms
74,188 KB |
testcase_17 | AC | 108 ms
74,084 KB |
testcase_18 | AC | 96 ms
74,172 KB |
testcase_19 | AC | 74 ms
74,028 KB |
testcase_20 | AC | 74 ms
74,120 KB |
testcase_21 | AC | 57 ms
74,084 KB |
testcase_22 | AC | 135 ms
74,096 KB |
testcase_23 | AC | 136 ms
74,092 KB |
testcase_24 | AC | 112 ms
74,172 KB |
testcase_25 | AC | 129 ms
74,148 KB |
testcase_26 | AC | 82 ms
74,088 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; }