题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1257
最少拦截系统
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 28771 Accepted Submission(s): 11328
Problem Description
某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统.但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能超过前一发的高度.某天,雷达捕捉到敌国的导弹来袭.由于该系统还在试用阶段,所以只有一套系统,因此有可能不能拦截所有的导弹.
怎么办呢?多搞几套系统呗!你说说倒蛮容易,成本呢?成本是个大问题啊.所以俺就到这里来求救了,请帮助计算一下最少需要多少套拦截系统.
怎么办呢?多搞几套系统呗!你说说倒蛮容易,成本呢?成本是个大问题啊.所以俺就到这里来求救了,请帮助计算一下最少需要多少套拦截系统.
Input
输入若干组数据.每组数据包括:导弹总个数(正整数),导弹依此飞来的高度(雷达给出的高度数据是不大于30000的正整数,用空格分隔)
Output
对应每组数据输出拦截所有导弹最少要配备多少套这种导弹拦截系统.
Sample Input
8 389 207 155 300 299 170 158 65
Sample Output
2
Source
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <algorithm> using namespace std; const int oo = 1e9; int dp[100005]; int a[100005]; int main() { int n; while(~scanf("%d",&n)) { for(int i=1; i<=n; i++) { scanf("%d", &a[i]); } int x = a[1]; int ans = 1; dp[1] = a[1]; for(int i=1; i<=n; i++) { int flag = 0; int Min = oo; int t; for(int j=1;j<=ans;j++) { if(dp[j]>=a[i] && Min>dp[j]-a[i]) { Min = dp[j]-a[i]; t = j; flag = 1; } } if(flag) { dp[t] = a[i]; } else { dp[++ans] = a[i]; } } printf("%d ",ans); } return 0; }
#include <iostream> #include <cstdio> #include <cmath> #include <cstring> #include <queue> #include <stack> #include <algorithm> using namespace std; #define N 101020 #define INF 0x3f3f3f3f #define MOD 2009 #define met(a, b) memset (a, b, sizeof(a)) typedef long long LL; int a[N], dp[N]; int main () { int n; while (scanf ("%d", &n) != EOF) { met (a, 0); met (dp, 0); for (int i=0; i<n; i++) scanf ("%d", &a[i]); if (!n) { puts ("0"); continue; } int maxn =-INF; for (int i=0; i<n; i++) { for (int j=0; j<i; j++) { if (a[i] > a[j]) dp[i] = max (dp[i], dp[j]+1); } maxn = max (maxn, dp[i]); } printf ("%d ", maxn+1); } return 0; }