結果
問題 |
No.1188 レベルX門松列
|
ユーザー |
![]() |
提出日時 | 2020-09-01 01:41:38 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 735 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 170,672 KB |
実行使用メモリ | 6,104 KB |
最終ジャッジ日時 | 2024-11-17 03:03:21 |
合計ジャッジ時間 | 3,152 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#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]); f[i] = itr - dp.begin(); *itr = a[i]; } 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(nax, min(frot[i], back[i])); } 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; }