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

BZOJ 4276: [ONTAK2015]Bajtman i Okr?g?y Robin

时间:2018-01-30 21:18:57      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:pen   size   const   sizeof   +=   ++   print   operator   ons   

最大权值匹配,贪心匈牙利即可。

检查一些人是否能被全部抓住可以采用左端点排序,右端点优先队列处理。

By:大奕哥

#include<bits/stdc++.h>
using namespace std;
const int N=5005;
struct node{
    int l,r,c;
    bool operator <(const node &b)const{
        return c>b.c;
    }
}p[N];
int match[N],ans,n;
bool v[N];
bool Hungary(int x)
{
    for(int i=p[x].l;i<=p[x].r;++i)
    {
        if(!v[i])
        {
            v[i]=1;
            if(!match[i]||Hungary(match[i]))
            {
                match[i]=x;
                return 1;
            }
        }
    }
    return 0;
}
int main()
{
//    freopen("1.out","r",stdin);
//    freopen("my.out","w",stdout);
    scanf("%d",&n);
    for(int i=1;i<=n;++i)
    {
        scanf("%d%d%d",&p[i].l,&p[i].r,&p[i].c);
        p[i].r--;
    }
    sort(p+1,p+1+n);
    for(int i=1;i<=n;++i)
    {
        memset(v,0,sizeof(v));
        if(Hungary(i))ans+=p[i].c;
    }
    printf("%d\n",ans);
    return 0;
}

 

BZOJ 4276: [ONTAK2015]Bajtman i Okr?g?y Robin

标签:pen   size   const   sizeof   +=   ++   print   operator   ons   

原文地址:https://www.cnblogs.com/nbwzyzngyl/p/8386921.html

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