poj 3483 Loan Scheduling

接着上一题的例题。

带权区间,区间长度为1,每个点可被覆盖l次,区间右端点不能超过di。

由于区间长度的特殊性,可以用并查集维护(不然只能用线段树了)

记录每个点的测度,当测度=l时将该点与该点该点前面的点合并。

于是用并查集维护点的集合,代表元取编号最小的点。

每次加区间的时候将区间覆盖到di所在集合的代表元上,然后按上述维护。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N=10000+5;
struct Credit{
	int p,d;
	bool operator < (const Credit &rhs)const{
		return p>rhs.p;
	}
}c[N];
int pa[N];
int find(int x){
	return pa[x]==x?x:pa[x]=find(pa[x]);
}
int merge(int x,int y){
	x=find(x);y=find(y);
	pa[x]=y;
}
int cov[N];
int main(){
	//freopen("a.in","r",stdin);
	int n,l;
	while(~scanf("%d%d",&n,&l)){
		int D=0;
		for(int i=1;i<=n;i++){
			scanf("%d%d",&c[i].p,&c[i].d);
			D=max(D,c[i].d);
		}
		if(!l){
			puts("0");
			continue;
		}
		for(int i=0;i<=D;i++)
		cov[i]=0,pa[i]=i;
		sort(c+1,c+1+n);
		int ans=0;
		for(int i=1;i<=n;i++){
			int s=find(c[i].d);
			if(!s&&cov[s]==l)continue;
			ans+=c[i].p;
			cov[s]++;
			if(cov[s]==l&&s)merge(s,s-1);
		}
		printf("%d\n",ans);
	}
	return 0;
}


你可能感兴趣的:(poj 3483 Loan Scheduling)