sicily_1443 Printer Queue

題目

Constraints

Time Limit: 1 secs, Memory Limit: 32 MB

Description

The only printer in the computer science students' union is experiencing an extremely heavy workload. Sometimes there are a hundred jobs in the printer queue and you may have to wait for hours to get a single page of output.

Because some jobs are more important than others, the Hacker General has invented and implemented a simple priority system for the print job queue. Now, each job is assigned a priority between 1 and 9 (with 9 being the highest priority, and 1 being the lowest), and the printer operates as follows.

?The first job J in queue is taken from the queue. 
?If there is some job in the queue with a higher priority than job J, thenmove J to the end of the queue without printing it. 
?Otherwise, print job J (and do not put it back in the queue).

In this way, all those importantmuffin recipes that the Hacker General is printing get printed very quickly. Of course, those annoying term papers that others are printing may have to wait for quite some time to get printed, but that's life.

Your problem with the new policy is that it has become quite tricky to determine when your print job will actually be completed. You decide to write a program to figure this out. The program will be given the current queue (as a list of priorities) as well as the position of your job in the queue, and must then calculate how long it will take until your job is printed, assuming that no additional jobs will be added to the queue. To simplifymatters, we assume that printing a job always takes exactly one minute, and that adding and removing jobs from the queue is instantaneous.

Input

One line with a positive integer: the number of test cases (at most 100). Then for each test case:
?One line with two integers n and m, where n is the number of jobs in the queue (1 ≤ n ≤ 100) and m is the position of your job (0 ≤ m ≤ n ?1). The first position in the queue is number 0, the second is number 1, and so on.
?One linewith n integers in the range 1 to 9, giving the priorities of the jobs in the queue. The first integer gives the priority of the first job, the second integer the priority of the second job, and so on.

Output

For each test case, print one line with a single integer; the number of minutes until your job is completely printed, assuming that no additional print jobs will arrive.

Sample Input

3
1 0
5
4 2
1 2 3 4
6 0
1 1 9 1 1 1

Sample Output

1
2
5

題目大意

工作有優先級的打印機,求當前工作將會是第幾個打印出來的。

思路

按照題目要求,將低于最高優先級的工作先放到隊尾即可。

代碼

// Copyright (c) 2014 Junjie_Huang@SYSU (SNO:13331087). ALL Rights Reserved.
// 1443.cpp: http://soj.sysu.edu.cn/1443
#include<iostream>
#include<queue>
using std::cin;
using std::cout;
using std::endl;

struct Job {
  // for the position of the jobs can be changed
  // we need to record the initial position of each job.
  int initial_position;
  int priority;
};

int main() {
  int testCase;
  cin >> testCase;
  while (testCase--) {
    int n, position, max_priority = 0;
    std::queue<Job> Que;
    cin >> n >> position;
    for (int i = 0; i < n; i++) {
      Job p;
      p.initial_position = i;
      cin >> p.priority;
      if (max_priority < p.priority) max_priority = p.priority;
      Que.push(p);
    }
    int counter = 0;
    while (Que.front().initial_position != position ||
           Que.front().priority < max_priority) {
      while (Que.front().priority < max_priority) {
        Job temp = Que.front();
        Que.pop();
        Que.push(temp);
      }
      if (Que.front().initial_position == position) break;
      Que.pop();
      counter++;
      n--;
      std::queue<Job> newQue;
      max_priority = 0;
      for (int i = 0; i < n; i++) {
        Job p = Que.front();
        if (max_priority < p.priority) max_priority = p.priority;
        newQue.push(p);
        Que.pop();
      }
      Que = newQue;
    }
    cout << counter + 1 << endl;
  }
  return 0;
}

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 9,940評論 0 23
  • 港囧小記 青春的遺憾 每個人都有一段青春的回憶,或甜美,或苦澀,或遺憾,港囧抓住青春主線,將青春的遺憾貫穿全劇,上...
    齊小爬閱讀 333評論 0 1
  • 因時因地因人而采取的不同管理方法。 對于能力差的人,我教你怎么做你就怎么做。 對于能力強的人,我只要結果,中間過程...
    念美美閱讀 304評論 3 3