Little_x_starTYJ @ 2024-10-09 15:23:03
首先 Sub 1 全过,然后 Sub 2 WA了。
#include <bits/stdc++.h>
using namespace std;
int dp[5010], a[5010], ans;
int main() {
ios::sync_with_stdio(false);
ios_base::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int n;
cin >> n;
for (int i = 1; i <= n; i++)
cin >> a[i];
for (int i = 1; i <= n; i++) {
dp[i] = 1;
for (int j = 1; j < i; j++) {
if (a[i] >= a[j])
dp[i] = max(dp[i], dp[j] + 1);
}
ans = max(ans, dp[i]);
}
cout << ans;
return 0;
}
by Nazale_ @ 2024-10-09 15:38:55
@Little_x_starTYJ 这个“逐渐增大”有点抠字眼了
by Little_x_starTYJ @ 2024-10-09 15:43:25
@Cxs_Lg 额,我的理解是递增。。。没想到题目的意思是单调递增。