首页 > 代码库 > poj 1456 Supermarket (贪心+并查集)
poj 1456 Supermarket (贪心+并查集)
# include <stdio.h> # include <algorithm> # include <string.h> using namespace std; int fa[10010]; struct node { int p; int d; }; struct node a[10010]; bool cmp(node a1,node a2)//利润从大到小 { return a1.p>a2.p; } int find(int x) { if(fa[x]==-1) return x; return fa[x]=find(fa[x]); } int main() { int i,n,sum; while(~scanf("%d",&n)) { memset(fa,-1,sizeof(fa)); for(i=0;i<n;i++) scanf("%d%d",&a[i].p,&a[i].d); sort(a,a+n,cmp); sum=0; for(i=0;i<n;i++) { int x=find(a[i].d); if(x>0) { fa[x]=x-1; sum+=a[i].p; } } printf("%d\n",sum); } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。