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

UVA 1372 - Log Jumping(推理)

时间:2014-05-03 21:44:03      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   color   

题目链接:1372 - Log Jumping

题意:给定一些n个木板的起始位置和长度k,相重叠的木板可以互相跳跃,求能构成环的最大数量。
思路:先按起始位置排序,然后每次多一个木板就去判断他和前一个和前前一个能不能互相跳跃,如果可以的话就可以多加上这个木板。
代码:
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
#define max(a,b) ((a)>(b)?(a):(b))
#define INF 0x3f3f3f3f
const int N = 5005;
int t, n, k, i, start[N];

bool check(int s, int e) {
	return e - s <= k;
}

int main() {
	scanf("%d", &t);
	while (t--) {
		int ans = 0;
		scanf("%d%d", &n, &k);
		for (i = 0; i< n; i++)
			scanf("%d", &start[i]);
		sort(start, start + n);
		i = 0;
		while (i < n) {
			int sum = 1;
			while (i < n - 1 && ((sum == 1 && check(start[i], start[i + 1])) || 
				(check(start[i], start[i + 1]) && check(start[i - 1], start[i + 1]))))
				sum++, i++;
			if (!check(start[i], start[i + 1]) || i == n - 1) i++;
			ans = max(ans, sum);
		}
		printf("%d\n", ans);
	}
	return 0;
}


UVA 1372 - Log Jumping(推理),布布扣,bubuko.com

UVA 1372 - Log Jumping(推理)

标签:style   blog   class   code   tar   color   

原文地址:http://blog.csdn.net/accelerator_/article/details/24930999

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