题目链接:https://www.luogu.com.cn/problem/P1020
题意:给定一行数字(导弹高度),一个导弹拦截器最开始可以拦截任意高度的导弹,但是之后每次只能够拦截高度不高于上一颗的导弹。第二问,问最少需要多少颗导弹拦截器才能拦截所有导弹?
题解:我受了第一小题的影响。想要dp,实际上是贪心,每次,能取多少是多少,看最后能取多少字。(贪心很简单,证明贪心很难emmmm,原来贪心都不算简单!!!)
代码:
#include <bits/stdc++.h>
#define ll int
#define pi acos(-1)
#define pb push_back
#define mst(a, i) memset(a, i, sizeof(a))
#define pll pair<ll, ll>
#define fi first
#define se second
#define mp(x, y) make_pair(x, y)
#define dbg(x) cout << #x << "===" << x << endl
using namespace std;
template <class T> void read(T &x) {
T res = 0, f = 1;
char c = getchar();
while (!isdigit(c)) {
if (c == '-') f = -1;
c = getchar();
}
while (isdigit(c)) {
res = (res << 3) + (res << 1) + c - '0';
c = getchar();
}
x = res * f;
}
void print(ll x) {
if (x < 0) {
putchar('-');
x = -x;
}
if (x > 9) print(x / 10);
putchar(x % 10 + '0');
}
const ll maxn = 1e5 + 10;
const ll mod = 80112002;
ll a[maxn];
ll dp[maxn],vis[maxn];
// ll gcd(ll a,ll b){return (b==0)?a:gcd(b,a%b);}
// ll qpow(ll a,ll p,ll mod){ll
// ans=1;a=a%mod;while(p){if(p&1)ans=(ans*a)%mod;p>>=1;a=(a*a)%mod;}return ans;}
int main() {
ll _s = 1;
// read(_s);
for (ll _ = 1; _ <= _s; _++) {
ll n=0;
//read(n);
//for(ll i=1;i<=n;i++) cin>>a[i];
while(cin>>a[++n]);
--n;
ll cnt=0;
dp[0]=1e5;
for(ll i=1;i<=n;i++){
for(ll j=cnt;j>=0;j--){
if(a[i]<=dp[j]){
dp[j+1]=a[i];
cnt=max(cnt,j+1);
break;
}
}
}
cout<<cnt<<endl;
ll ans=0,p;
for(ll i=1;i<=n;i++){
if(vis[i]) continue;
p=a[i];
for(ll j=i+1;j<=n;j++){
if(vis[j]) continue;
if(a[j]<=p){
p=a[j];vis[j]=1;
}
}
ans++;
}
cout<<ans<<endl;
}
return 0;
}
/*
input:::
?z至少简单检查一下(简单到,看一看是不是自己想要提交的代码,不要自己调试的没注释,或者随便造的一个样例都过不了)。
output:::
*/