zoukankan      html  css  js  c++  java
  • SOJ 1717 Computer (单机任务调度)

    一、题目描述

    Constraints :Time Limit: 2 secs, Memory Limit: 32 MB

    Description:

      We often hear that computer is a magic, a great invention, or even a marvel. But actually computer is just a tool people use everyday. It is a machine that can help people to process many jobs effectively. Moreover, without computer, you can not play ICPC. So, guys, let’s study some stuff about computer here.
      One computer has one CPU (Central Processing Unit). CPU can be idle or processing one job at any time. Jobs come randomly and are stored in the memory until finished. CPU will process jobs according to some strategies. The processing job can be interrupted and saved back so that CPU can be available for other jobs. 
      Each job has a release time and a processing time. Assume that we know the schedule of all jobs, please generate a program to minimize the sum of completion times of all jobs using a strategy which assigns and interrupts jobs properly.
      For example, suppose there are two jobs to be completed. Job 1 is released at time 1 and needs 4 time units to process. Job 2’s release time and processing time is 3 and 1. Figures below show three solutions:


      Figure 1 shows a solution with the total complete time 4 + 6 = 10, and the result of Figure 2 and 3 are both 5 + 6 = 11. In fact, Figure 1 shows the optimal solution 
    Please note that all of the jobs will be released, interrupted and assigned in integer time unit.

    Input:

      Input may consist of multiple test cases.
      Every test case begins with a line that contains one integer n (1<= n <= 50000) denoting the number of jobs. Each of the following n lines contains 2 integers: ri and pi, (1 <= ri <= 10^9, 1 <= pi <= 10000) denoting the release time and processing time of job i.
      Input is terminated by EOF.

    Output:

      For every test case, print one line with an integer denoting the minimum sum of completion times.

    Sample Input

      2
      1 4
      3 1
    Sample Output

      10

    二、问题解决

      1、题意:单机任务调度,模拟CPU工作方式,CPU每个时刻只能处理一个任务,给出每个任务的release时间和process时间,设计调度算法,使所有任务完成时间总和最小。

      2、思路:贪心思想,每次处理process时间最短的任务。

      具体步骤:用循环模拟CPU,每个循环表示一个CPU时间。全局维护一个待处理的最小任务优先队列que,即剩余process时间短的任务优先。每次循环中:(1)取出que中top元素,将其剩余process时间减1,即CPU此时刻处理该任务,减到0则记录该任务完成时间;(2)将该时间刻release的任务加入等候队列que中。

      3、代码:基于上面的思路,可以写出下面的代码。

     1 // Problem#: 1717
     2 #include <iostream>
     3 #include <cstdio>
     4 #include <queue>
     5 #include <algorithm>
     6 using namespace std;
     7 const int MAX = 50000;
     8 struct Job
     9 {
    10     int r,p;
    11     bool operator < (const Job &job) const {
    12         if(r == job.r) return p < job.p;
    13         else return r < job.r;
    14     }
    15 };
    16 Job jobs[MAX];
    17 
    18 int main() {
    19     int n;
    20     while(scanf("%d",&n) != EOF) {
    21         for(int i = 0; i < n; ++i) {
    22             scanf("%d%d", &jobs[i].r, &jobs[i].p);   
    23         }
    24         sort(jobs,jobs+n);
    25 
    26         priority_queue<int,vector<int>,greater<int> > que;
    27         long long ans = 0;
    28         int cnt = 0, cur = 1, tmp;
    29 
    30         que.push(jobs[0].p);
    31         for(long long i = jobs[0].r; ;++i) {
    32             tmp = que.top(); que.pop();
    33             if (tmp-1 == 0) {
    34                 ans = ans+i;
    35                 cnt += 1;
    36                 if(cnt == n) break;
    37             }
    38             else que.push(tmp-1);
    39             while(cur < n && jobs[cur].r <= i) {
    40                 que.push(jobs[cur++].p);
    41             }
    42         }
    43         printf("%lld
    ",ans);       
    44     }
    45     return 0;
    46 }                                 
    暴力代码

       4、进一步分析:虽然思路对了,但上面代码明显会超时。

      这时考虑加快cpu工作速度,即不是模拟CPU每个时刻处理的任务,而是考虑每个任务能否一次性完成。大概思路是这样,取出que中最小任务时间,判断在下一个任务release时刻(距离上一任务process时刻会有一段时间间隔),该任务能否完成,若能完成,就可以缩短时间间隔,继续判断下一任务;若不能完成,则将该任务process时间减去时间间隔,重新加入que,并将下一任务加入que。

    代码如下:

     1 // Problem#: 1717
     2 #include <iostream>
     3 #include <cstdio>
     4 #include <queue>
     5 #include <algorithm>
     6 using namespace std;
     7 const int MAX = 50000;
     8 struct Job
     9 {
    10     int r,p;
    11     bool operator < (const Job &job) const {
    12         if(r == job.r) return p < job.p;
    13         else return r < job.r;
    14     }
    15 };
    16 Job jobs[MAX];
    17 
    18 int main() {
    19     int n;
    20     while(scanf("%d",&n) != EOF) {
    21         for(int i = 0; i < n; ++i) {
    22             scanf("%d%d", &jobs[i].r, &jobs[i].p);   
    23         }
    24         sort(jobs,jobs+n);
    25 
    26         priority_queue<int,vector<int>,greater<int> > que;
    27         long long ans = 0;
    28         int i = 1, cnt = 0, cur, tmp;
    29         int pre = jobs[0].r;  //前一任务处理时刻
    30         int cur_time = jobs[0].r;   //当前时刻
    31 
    32         que.push(jobs[0].p);
    33         while(true) {
    34             cur = que.top(); que.pop();
    35             if (i >= n) {
    36                 cur_time += cur;
    37                 ans += cur_time;
    38                 cnt += 1;
    39                 if (cnt == n) break;
    40                 continue;
    41             }
    42             tmp = jobs[i].r - pre;
    43             if (cur <= tmp) {
    44                 cur_time += cur; 
    45                 ans += cur_time;
    46                 cnt += 1;
    47                 pre = cur_time;
    48                 if (cnt == n) break;
    49                 if (!que.empty()) continue;   //时间间隔缩短,能否继续处理que中剩余任务
    50             }else {
    51                 que.push(cur-tmp);
    52                 cur_time = jobs[i].r;
    53             }
    54             pre = jobs[i].r;
    55             cur_time = pre;
    56             while(i < n && jobs[i].r == pre)
    57                 que.push(jobs[i++].p);
    58         }
    59 
    60         printf("%lld
    ",ans);       
    61     }
    62     return 0;
    63 }                                     
    View Code

    结果超出我的想象,折磨了2个小时,感觉智商远远不够用啊!

  • 相关阅读:
    团队协议
    C++ 多继承和虚继承的内存布局(转)
    轻量级的.Net ORM框架介绍
    EF下CodeFirst、DBFirst与ModelFirst分析
    JDK方式
    JSON
    事务的ACID特性
    数据库查询
    Assets
    内部文件存储
  • 原文地址:https://www.cnblogs.com/chenbjin/p/4991817.html
Copyright © 2011-2022 走看看