题目链接:http://codeforces.com/gym/101987
题目描述
ICPC manager plans a new project which is to be carried out for n days. In this project, m persons numbered from 1 to m are supposed to work. Each day j (1 ≤ j ≤ n) requires dj persons, and each person i (1 ≤ i ≤ m) wants to work wi days.

To increase the efficiency in performing the project, the following two conditions should be satisfied:
    1.each person works for only consecutive w days when he/she works, and
    2.each person can work again after he/she has a rest for at least h days.
ICPC manager wants to find a working plan to assign the working days for all persons such that the number of working days of each person i (1 ≤ i ≤ m) is equal to wi and the number of persons who work for each day j (1 ≤ j ≤ n) is equal to dj, and above two conditions are also satisfied.

For example, assume the project is carried out for n = 9 days, and m = 4 persons participate in the project. Let w = 2 and h = 1. Also, assume (w1, w2, w3, w4) = (4, 4, 6, 2) and (d1, d2, d3, d4, d5, d6, d7, d8, d9) = (1, 3, 2, 1, 2, 1, 1, 3, 2). The table below shows a feasible solution where the i-th row corresponds to person i, and the j-th column corresponds to day j. If person i works or has a rest in day j, the value of the table element with row i and column j is 1 or 0, respectively.

Given m, n, w, h, wi (1 ≤ i ≤ m) which is a multiple of w, and dj (1 ≤ j ≤ n), write a program to find a feasible solution as a working plan.

输入
Your program is to read from standard input. The input starts with a line containing four integers, m, n, w, h (1 ≤ m ≤ 2,000, 1 ≤ n ≤ 2,000, 1 ≤ w, h ≤ n). The following line contains m integers where the i-th (1 ≤ i ≤ m) integer represents wi (1 ≤ wi ≤ n) which is a multiple of w. The next line contains n integers where the j-th (1 ≤ j ≤ n) integer represents dj (0 ≤ dj ≤ m).

输出
Your program is to write to standard output. If there is a feasible working plan, print 1 in the first line followed by m lines, each i-th (1 ≤ i ≤ m) line should contain wi/w integers. These integers form an increasing sequence of first days that person i works in the feasible plan. If there is no feasible working plan, print only -1 in the first line. The first sample below corresponds to the example given in the table above.

样例输入
样例数据

4 9 2 1
4 4 6 2
1 3 2 1 2 1 1 3 2
样例输出

1
1 8
2 7
2 5 8
4
题意:有m个工人,要工作n天,每个工人可以连续工作w天,之后就要休息h天,给定每个工人的工作天数b[i],和每天需要的工人数a[i],问工人的数量能否满足每天的工作安排,若可以,输出1,并输出每个工人每次开始工作的日期(每个工人的工作次数为b[i]/w),若不能,直接输出-1.

题解:建立两个优先队列,工作队列Q和休息队列T,Q的优先级是工作次数,工作次数越多的越先进入工作队列,T的优先级是休息之后可以开始工作的时间,工作时间越早越先进入队列。工作队列的每个工人工作w天之后进入休息队列,休息队列里记录休息h天之后可以开始工作的日期,若这个日期小于当天日期,就可以进入工作队列

因为每个工人可以连续工作,在用一个vis数组记录每天需要新加入的工人数量

  1. #include<iostream>
  2. #include<algorithm>
  3. #include<queue>
  4. #include<vector>
  5. using namespace std;
  6. int n, m, w, h;
  7. int a[], b[], vis[];//vis记录每天需要新加入几个工人
  8. vector<int>v[];
  9. typedef struct node
  10. {
  11. int num;//编号
  12. int cnt;//工作次数
  13. int time;//休息之后可以开始工作的日期
  14. }node;
  15.  
  16. typedef struct cmp1//对队列T,可以开始工作的日期越早越先入队列
  17. {
  18. bool operator () (const node &x, const node &y)
  19. {
  20. return x.time > y.time;
  21. }
  22. }cmp1;
  23. typedef struct cmp2//对队列Q,工作次数越多的越先进入队列
  24. {
  25. bool operator () (const node &x, const node &y)
  26. {
  27. return x.cnt < y.cnt;
  28. }
  29.  
  30. }cmp2;
  31. priority_queue<node, vector<node>, cmp2>Q;//工作队列
  32. priority_queue<node, vector<node>, cmp1>T;//休息队列
  33. int main()
  34. {
  35. node p[];
  36. cin >> m >> n >> w >> h;
  37. for (int i = ; i <= m; i++)
  38. {
  39. cin >> b[i];
  40. p[i].num = i;
  41. p[i].cnt = b[i] / w;
  42. p[i].time = ;
  43. Q.push(p[i]);
  44. }
  45. for (int i = ; i <= n; i++)
  46. cin >> a[i];
  47. int flag = ;
  48. for (int i = ; i <= n; i++)
  49. {
  50. if(a[i]!=)
  51. {
  52. int temp = a[i];
  53. vis[i] = a[i];
  54. for (int j = i; j <= i + w - ; j++)//因为每个人都是连续工作的,之后的w天都要减去a[i]得到需要新加入的人数
  55. a[j] = a[j] - temp;
  56. }
  57. }
  58. node temp;
  59. for (int i = ; i <= n; i++)
  60. {
  61. while (!T.empty())
  62. {
  63. temp = T.top();
  64. if (temp.time <= i)//如果可以开始工作的日期小于当前日期
  65. {
  66. Q.push(temp);
  67. T.pop();
  68. }
  69. else
  70. break;
  71. }
  72. while (!Q.empty() && vis[i])
  73. {
  74. temp = Q.top();
  75. Q.pop();
  76. vis[i]--;
  77. temp.time = i + w + h;
  78. temp.cnt--;
  79. v[temp.num].push_back(i);//记录每次开始工作的日期
  80. if (temp.cnt != )
  81. T.push(temp);
  82. }
  83. if (vis[i] != )//人数不够
  84. {
  85. flag = ;
  86. break;
  87. }
  88. }
  89. if (flag == )
  90. cout << - << endl;
  91. else
  92. {
  93. cout << << endl;
  94. for (int i = ; i <= m; i++)
  95. {
  96. for (int j = ; j < v[i].size(); j++)
  97. {
  98. cout << v[i][j];
  99. if (j != v[i].size())
  100. cout << ' ';
  101. }
  102. cout << endl;
  103. }
  104. }
  105. return ;
  106.  
  107. }

Working Plan 优先队列+贪心的更多相关文章

  1. 【CF526G】Spiders Evil Plan(贪心)

    [CF526G]Spiders Evil Plan(贪心) 题面 洛谷 CodeForces 给定一棵树,要求选择\(y\)条链,满足被链覆盖的所有点在树上联通,且\(x\)必定在联通块中. 对于每次 ...

  2. 最高的奖励 - 优先队列&贪心 / 并查集

    题目地址:http://www.51cpc.com/web/problem.php?id=1587 Summarize: 优先队列&贪心: 1. 按价值最高排序,价值相同则按完成时间越晚为先: ...

  3. POJ2431 优先队列+贪心 - biaobiao88

    以下代码可对结构体数组中的元素进行排序,也差不多算是一个小小的模板了吧 #include<iostream> #include<algorithm> using namespa ...

  4. hdu3438 Buy and Resell(优先队列+贪心)

    Buy and Resell Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)To ...

  5. ZOJ-3410Layton's Escape(优先队列+贪心)

    Layton's Escape Time Limit: 2 Seconds      Memory Limit: 65536 KB Professor Layton is a renowned arc ...

  6. CodeForces - 853A Planning (优先队列,贪心)

    Helen works in Metropolis airport. She is responsible for creating a departure schedule. There are n ...

  7. poj2431(优先队列+贪心)

    题目链接:http://poj.org/problem?id=2431 题目大意:一辆卡车,初始时,距离终点L,油量为P,在起点到终点途中有n个加油站,每个加油站油量有限,而卡车的油箱容量无限,卡车在 ...

  8. H - Expedition 优先队列 贪心

    来源poj2431 A group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being ...

  9. 1350: To Add Which? (优先队列+贪心 或者 数组模拟)

    1350: To Add Which? Submit Page    Summary    Time Limit: 1 Sec     Memory Limit: 128 Mb     Submitt ...

随机推荐

  1. 吴裕雄 Bootstrap 前端框架开发——Bootstrap 表单

    <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...

  2. WebGL绘制正方体

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  3. javaScript中this的指向?

    javaScript中this对象是在运行时基于函数的执行环境绑定的,在全局函数中,this等于window,而当函数被作为某个对象的方法调用时,this等于那个对象. 但在实际中,代码环境复杂,th ...

  4. HDU 5524:Subtrees

    Subtrees  Accepts: 60  Submissions: 170  Time Limit: 2000/1000 MS (Java/Others)  Memory Limit: 13107 ...

  5. 三、js提交请求加载启动动画、请求完成成功回调、注销加载动画

    1.通过Query  post方式进行异步请求方法 jQuery.post(url, [data], [callback], [type]) 参数说明: url:发送请求地址 data:待发送 Key ...

  6. 关于Java构造类与对象的思考

    简单记录一下Java构造类与对象时的流程以及this和super对于特殊例子的分析. 首先,接着昨天的问题,我做出了几个变形: Pic1.原版: Pic2.去掉了T.foo方法中的this关键字: P ...

  7. english-phoneme

    1. 声音概述 2. 音素phoneme与音标 2.1 音素与音标 2.2 音素与字母 2.3 字母发音-字母自然发音对照表 2.4 音标表 2.5 元音字母-辅音字母表 2.6 单元音发音口形趋势表 ...

  8. java、mysql、oracle、pgsql数据类型对应关系

    看不清 请 Ctrl+鼠标滚轮     放大页面

  9. 【拒绝挂分】盘点蒟蒻ghy的各种sb错误

    1.m与n打反(打错) NOIPd2t2 50变15爽不爽啊.jpg 某次信心赛四道sb题里面最sb的一道 sort里面的m打成n 100变40爽不爽啊.jpg(还有40我真的谢谢您了 2.没开lon ...

  10. 「USACO09FEB」改造路Revamping Trails

    传送门 Luogu 解题思路 有点像这题,但是现在这道不能跑k遍SPFA了,会TLE. 那么我们就跑分层图最短路,然后就变成模板题了. 细节注意事项 别跑SPFA就好了. 参考代码 #include ...