码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1257 最少拦截系统

时间:2016-04-08 21:51:26      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:

http://acm.hdu.edu.cn/showproblem.php?

pid=1257

题目大意:

有一种导弹拦截系统,每次仅仅能发射比前一发导弹低的炮弹,给定一些导弹的突击顺序,求至少须要多少导弹拦截系统来全然阻止

思路:

好久没做题。做题水的~

直接模拟就可以~


#include<cstdio>
const int MAXN = 30000 + 10;
const int INF = 0x3ffffff;
int a[MAXN], ans;
int cur_max[MAXN]; //当前导弹系统能达到的最大高度
int main()
{
	int n;
	while (~scanf("%d", &n))
	{
		for (int i = 0; i < n; i++)
			scanf("%d", &a[i]);
		ans = 1;
		cur_max[0] = a[0];
		for (int i = 1; i < n; i++)
		{
			int dis_min = INF;
			for (int j = 0; j < ans; j++)
			{
				//当当前导弹小于某个能够拦截的导弹系统时候
				//查找最接近这个导弹高度的
				if (a[i] < cur_max[j] && dis_min > cur_max[j])
					dis_min = j;			
			}
			if (dis_min == INF)
				dis_min = ans++;				
			cur_max[dis_min] = a[i];
		}
		printf("%d\n", ans);
	}
	return 0;
}


HDU 1257 最少拦截系统

标签:

原文地址:http://www.cnblogs.com/yxwkf/p/5369962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!