博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 2647:Reward(拓扑排序+队列)
阅读量:6603 次
发布时间:2019-06-24

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

                                        Reward

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 12918    Accepted Submission(s): 4129

Problem Description

Dandelion's uncle is a boss of a factory. As the spring festival is coming , he wants to distribute rewards to his workers. Now he has a trouble about how to distribute the rewards.

The workers will compare their rewards ,and some one may have demands of the distributing of rewards ,just like a's reward should more than b's.Dandelion's unclue wants to fulfill all the demands, of course ,he wants to use the least money.Every work's reward will be at least 888 , because it's a lucky number.

Input

One line with two integers n and m ,stands for the number of works and the number of demands .(n<=10000,m<=20000)

then m lines ,each line contains two integers a and b ,stands for a's reward should be more than b's.

Output

For every case ,print the least money dandelion 's uncle needs to distribute .If it's impossible to fulfill all the works' demands ,print -1.

Sample Input

2 1

1 2

2 2

1 2

2 1

Sample Output

1777

-1

题意

老板给员工发工资,n个员工,m中工资关系,每次输入两个人,要求前面的人的工资比后面高。员工的最低工资是888,老板一共需要支付多少工资?如果支付工资是不能满足所有人的要求,输出-1

思路

反向建图,让工资低的那个人的顶点指向工资高的人。然后拓扑排序判断是否有环,有环输出-1 。没有环就将图分层,每一层工资增加1 ,最后输出所需发的工资。

注意建图时用vector,二维数组会爆内存

AC代码

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define l long long#define ms(a) memset(a,0,sizeof(a))#define pi acos(-1.0)#define INF 0x3f3f3f3fconst double E=exp(1);const int maxn=1e4+10;using namespace std;int n,m;vector
v[maxn];int vis[maxn];int money[maxn];bool toposort(){ int ans=0; queue
que; for(int i=1;i<=n;i++) { // 把刚开始入度为0的点放入 if(!vis[i]) que.push(i); } while(!que.empty()) { int res=que.front(); que.pop(); // 每次pop出去的点都是入度为0的点,统计这些点的个数 ans++; for(int i=0;i
>n>>m) { ms(vis); ms(money); for(int i=0;i
>x>>y; // 反向建图 v[y].push_back(x); vis[x]++; } if(!toposort()) cout<<-1<

 

转载于:https://www.cnblogs.com/Friends-A/p/10324412.html

你可能感兴趣的文章
commons-lang中常用方法
查看>>
spring 定时任务
查看>>
thinkphp 路由规则终极详解(附伪静态)
查看>>
网络安全-加密算法
查看>>
This tag and its children can be replaced by ~~~
查看>>
XCode快捷键
查看>>
struts2 修改action的后缀
查看>>
php保存canvas生成的图片
查看>>
HTML5 定位
查看>>
禁止http 缓存的方法
查看>>
python windows下安装pip(三)
查看>>
Android图像处理(二)--Paint,Canvas,ColorMatrix详细
查看>>
Android 百度地图
查看>>
iOS 架构(起手式)
查看>>
FilterDispatcher处理流程
查看>>
基于云平台部署应用的三种方式
查看>>
正确使用 Volatile 变量
查看>>
我的友情链接
查看>>
持续集成
查看>>
我的友情链接
查看>>