HDU - 6447 YJJ's Salesman(树状数组优化的dp+离散化)

 

YJJ's Salesman

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1996    Accepted Submission(s): 744


 

Problem Description

YJJ is a salesman who has traveled through western country. YJJ is always on journey. Either is he at the destination, or on the way to destination.
One day, he is going to travel from city A to southeastern city B. Let us assume that A is (0,0) on the rectangle map and B (109,109) . YJJ is so busy so he never turn back or go twice the same way, he will only move to east, south or southeast, which means, if YJJ is at (x,y) now (0≤x≤109,0≤y≤109) , he will only forward to (x+1,y) , (x,y+1) or (x+1,y+1) .
On the rectangle map from (0,0) to (109,109) , there are several villages scattering on the map. Villagers will do business deals with salesmen from northwestern, but not northern or western. In mathematical language, this means when there is a village k on (xk,yk) (1≤xk≤109,1≤yk≤109) , only the one who was from (xk−1,yk−1) to (xk,yk) will be able to earn vk dollars.(YJJ may get different number of dollars from different village.)
YJJ has no time to plan the path, can you help him to find maximum of dollars YJJ can get.

 

 

Input

The first line of the input contains an integer T (1≤T≤10) ,which is the number of test cases.

In each case, the first line of the input contains an integer N (1≤N≤105) .The following N lines, the k -th line contains 3 integers, xk,yk,vk (0≤vk≤103) , which indicate that there is a village on (xk,yk) and he can get vk dollars in that village.
The positions of each village is distinct.

 

 

Output

The maximum of dollars YJJ can get.

 

 

Sample Input

 

1 3 1 1 1 1 2 2 3 3 1

 

 

Sample Output

 

3

 

 

Source

2018中国大学生程序设计竞赛 - 网络选拔赛

 

 

Recommend

chendu

 

#include
#include
#include
#include
using namespace std;
const int maxn = 200010;
const int inf = 0x3f3f3f3f;
int c[maxn], n, m, sot[maxn];
int dp[maxn], ans;
struct fuck {
	int x, y, v;
}spot[maxn];
bool cmp(fuck a, fuck b) {
	if (a.x < b.x)
		return 1;
	else if (a.x == b.x&&a.y > b.y)
		return 1;
	return 0;
}
int lowbit(int x) {
	return x&(-x);
}
int getsum(int x) {
	int sum = 0;
	while (x) {
		sum = max(sum, c[x]);
		x -= lowbit(x);
	}
	return sum;
}
void add(int x, int d) {
	while (x<= 2 * n) {
		c[x] = max(c[x], d);
		ans = max(ans, c[x]);
		x += lowbit(x);
	}
}
void init() {
	memset(c, 0, sizeof(c));
	memset(dp, 0, sizeof(dp));
	ans = -1;
}
int main() {
	int te;
	scanf("%d", &te);
	while (~scanf("%d", &n)) {
		init();
		for (int s = 1; s <= n; s++) {
			scanf("%d%d%d", &spot[s].x, &spot[s].y, &spot[s].v);
			sot[2 * s - 1] = spot[s].x;
			sot[2 * s - 2] = spot[s].y;
		}
		sort(sot, sot + 2 * n);
		for (int s = 1; s <= n; s++) {
			spot[s].x = lower_bound(sot, sot + 2 * n, spot[s].x) - sot + 1;
			spot[s].y = lower_bound(sot, sot + 2 * n, spot[s].y) - sot + 1;
		}
		sort(spot + 1, spot + n + 1, cmp);
		for (int s = 1; s <= n; s++) {
			dp[s] = getsum(spot[s].y - 1) + spot[s].v;
			add(spot[s].y, dp[s]);
		}
		printf("%d\n", ans);
	}
}

 

你可能感兴趣的:(dp,数据结构)