博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU4864:Task(贪心)
阅读量:5764 次
发布时间:2019-06-18

本文共 2273 字,大约阅读时间需要 7 分钟。

Problem Description
Today the company has m tasks to complete. The ith task need xi minutes to complete. Meanwhile, this task has a difficulty level yi. The machine whose level below this task’s level yi cannot complete this task. If the company completes this task, they will get (500*xi+2*yi) dollars.
The company has n machines. Each machine has a maximum working time and a level. If the time for the task is more than the maximum working time of the machine, the machine can not complete this task. Each machine can only complete a task one day. Each task can only be completed by one machine.
The company hopes to maximize the number of the tasks which they can complete today. If there are multiple solutions, they hopes to make the money maximum.
 

Input
The input contains several test cases. 
The first line contains two integers N and M. N is the number of the machines.M is the number of tasks(1 < =N <= 100000,1<=M<=100000).
The following N lines each contains two integers xi(0<xi<1440),yi(0=<yi<=100).xi is the maximum time the machine can work.yi is the level of the machine.
The following M lines each contains two integers xi(0<xi<1440),yi(0=<yi<=100).xi is the time we need to complete the task.yi is the level of the task.
 

Output
For each test case, output two integers, the maximum number of the tasks which the company can complete today and the money they will get.
 

Sample Input
 
1 2 100 3 100 2 100 1
 

Sample Output
 
1 50004
 
题意:n台机器,m个任务,每台机器和任务都有两个值,机器的两个值都大于任务的两个值,这台机器才干完毕这个任务,每台机器仅仅能完毕一个任务,问最大收益
思路:贪心,标记好暴力就可以
#include 
#include
#include
using namespace std;struct node{ int x,y;} s1[100005],s2[100005];int cmp(node a,node b){ if(a.x == b.x) return a.y>b.y; return a.x>b.x;}int main(){ int n,m,i,j,cnt; __int64 sum; while(~scanf("%d%d",&n,&m)) { for(i = 0; i
=s2[i].x) { c[s1[j].y]++; j++; } for(int k = s2[i].y; k<=100; k++) { if(c[k]) { c[k]--; sum+=(s2[i].x*500+s2[i].y*2); cnt++; break; } } } printf("%d %I64d\n",cnt,sum); }}

转载地址:http://mogkx.baihongyu.com/

你可能感兴趣的文章
ORACLE配置,修改tnsnames.ora文件实例
查看>>
Workstation服务无法启动导致无法访问文件服务器
查看>>
ant中文教程
查看>>
Linux常用命令(一)
查看>>
【VMCloud云平台】SCAP(四)租户(一)
查看>>
基于 Android NDK 的学习之旅----- C调用Java
查看>>
Windows 10 技术预览
查看>>
Tomcat http跳转https
查看>>
一个自动布署.net网站的bat批处理实例
查看>>
我的友情链接
查看>>
Centos6.6安装选包及基础场景说明
查看>>
java基础面试题-1
查看>>
深克隆与序列化效率的比较
查看>>
lamp+nginx代理+discuz+wordpress+phpmyadmin搭建一
查看>>
nagios监控使用139邮箱报警
查看>>
Windows Phone 7 中各种Task解说(启动器与选择器)
查看>>
罗森伯格助力2011年中国智能建筑技术发展应用论坛哈尔滨站
查看>>
windows server 2016 活动目录(二)
查看>>
openstack G版 修改vm的flavor级别
查看>>
python_控制台输出带颜色的文字方法
查看>>