mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 12:58:48 +00:00
1259. 【例9.3】求最长不下降序列
http://ybt.ssoier.cn:8088/statusx.php?runidx=15557056
This commit is contained in:
parent
733514751c
commit
50e83048ff
45
ybt/1259/1259.cpp
Normal file
45
ybt/1259/1259.cpp
Normal file
@ -0,0 +1,45 @@
|
||||
#include <iostream>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 205;
|
||||
|
||||
int n, a[N], f[N], r[N], t, ans;
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
cin >> n;
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cin >> a[i];
|
||||
|
||||
f[i] = 1;
|
||||
for (int j = 1; j < i; j++) {
|
||||
if (a[i] >= a[j]) f[i] = std::max(f[i], f[j] + 1);
|
||||
}
|
||||
|
||||
if (f[i] > ans) {
|
||||
ans = f[i];
|
||||
t = i;
|
||||
}
|
||||
}
|
||||
|
||||
cout << "max=" << ans << endl;
|
||||
|
||||
for (int i = t; i; i--) {
|
||||
if (f[i] == ans && a[i] <= a[t]) {
|
||||
f[i] = 0;
|
||||
ans--;
|
||||
t = i;
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 1; i <= n; i++) {
|
||||
if (!f[i]) cout << a[i] << ' ';
|
||||
}
|
||||
cout << endl;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user