結果
問題 | No.1188 レベルX門松列 |
ユーザー | onsen_manjuuu |
提出日時 | 2020-09-01 01:27:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 777 bytes |
コンパイル時間 | 1,729 ms |
コンパイル使用メモリ | 172,152 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-17 03:02:58 |
合計ジャッジ時間 | 3,577 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 53 ms
5,456 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 60 ms
6,100 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 57 ms
5,976 KB |
testcase_08 | AC | 58 ms
6,100 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 6 ms
5,248 KB |
testcase_13 | AC | 7 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 71 ms
6,096 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9; int n; vector<int> LIS(vector<int> a) { vector<int> dp(n, INF); vector<int> f(n); for(int i = 0; i < n; i++) { auto itr = lower_bound(dp.begin(), dp.end(), a[i]); *itr = a[i]; f[i] = lower_bound(dp.begin(), dp.end(), INF) - dp.begin(); } return f; } int f(vector<int> a, int cof) { for(auto &i: a) i *= cof; vector<int> frot = LIS(a); reverse(a.begin(), a.end()); vector<int> back = LIS(a); reverse(back.begin(), back.end()); int nax = 0; for(int i = 1; i < n - 1; i++) { nax = max(min(frot[i-1], back[i+1]), nax); } return nax; } int main() { cin >> n; vector<int> a(n); for(int i = 0; i < n; i++)cin >> a[i]; cout << max(f(a, 1), f(a,-1)) << endl; }