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

POJ1456 Supermarket 贪心

时间:2016-05-05 12:43:04      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

贪心策略:一定先卖价值最大的,然后考虑卖当前的物品,卖的日期越靠后,越优,可以为以后的物品提供机会

技术分享
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
const int N=1e4+5;
struct Node{
   int v,d;
   bool operator<(const Node &rhs)const{
      return v>rhs.v;
   }
}p[N];
bool vis[N];
int main()
{
    int n;
    while(~scanf("%d",&n)){
      memset(vis,0,sizeof(vis));
      for(int i=1;i<=n;++i){
        scanf("%d%d",&p[i].v,&p[i].d);
      }
      sort(p+1,p+1+n);
      int ans=0;
      for(int i=1;i<=n;++i){
         for(int j=p[i].d;j>=1;--j)
          if(!vis[j]){ans+=p[i].v,vis[j]=1;break;}
      }
      printf("%d\n",ans);
    }
    return 0;
}
View Code

 

POJ1456 Supermarket 贪心

标签:

原文地址:http://www.cnblogs.com/shuguangzw/p/5461121.html

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