日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

pat1014. Waiting in Line (30)

發布時間:2024/10/12 编程问答 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 pat1014. Waiting in Line (30) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1014. Waiting in Line (30)

時間限制 400 ms 內存限制 65536 kB 代碼長度限制 16000 B 判題程序 Standard 作者 CHEN, Yue

Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules for the customers to wait in line are:

  • The space inside the yellow line in front of each window is enough to contain a line with M customers. Hence when all the N lines are full, all the customers after (and including) the (NM+1)st one will have to wait in a line behind the yellow line.
  • Each customer will choose the shortest line to wait in when crossing the yellow line. If there are two or more lines with the same length, the customer will always choose the window with the smallest number.
  • Customer[i] will take T[i] minutes to have his/her transaction processed.
  • The first N customers are assumed to be served at 8:00am.

Now given the processing time of each customer, you are supposed to tell the exact time at which a customer has his/her business done.

For example, suppose that a bank has 2 windows and each window may have 2 custmers waiting inside the yellow line. There are 5 customers waiting with transactions taking 1, 2, 6, 4 and 3 minutes, respectively. At 08:00 in the morning, customer1?is served at window1?while customer2?is served at window2. Customer3?will wait in front of window1?and customer4?will wait in front of window2. Customer5?will wait behind the yellow line.

At 08:01, customer1?is done and customer5?enters the line in front of window1?since that line seems shorter now. Customer2?will leave at 08:02, customer4?at 08:06, customer3?at 08:07, and finally customer5?at 08:10.

Input

Each input file contains one test case. Each case starts with a line containing 4 positive integers: N (<=20, number of windows), M (<=10, the maximum capacity of each line inside the yellow line), K (<=1000, number of customers), and Q (<=1000, number of customer queries).

The next line contains K positive integers, which are the processing time of the K customers.

The last line contains Q positive integers, which represent the customers who are asking about the time they can have their transactions done. The customers are numbered from 1 to K.

Output

For each of the Q customers, print in one line the time at which his/her transaction is finished, in the format HH:MM where HH is in [08, 17] and MM is in [00, 59]. Note that since the bank is closed everyday after 17:00, for those customers who cannot be served before 17:00, you must output "Sorry" instead.

Sample Input 2 2 7 5 1 2 6 4 3 534 2 3 4 5 6 7 Sample Output 08:07 08:06 08:10 17:00 Sorry

提交代碼

?

教訓:

Note that since the bank is closed everyday after 17:00, for those customers who cannot be served before 17:00, you must output "Sorry" instead.

這句話的含義是如果不能在17:00之前開始服務,則輸出“Sorry”

?

?

注意:vector就是可變長的動態數組,比較靈活好用

?

加入元素:push_back()

刪除元素:用vector<int>::iterator ? it ?遍歷至要刪除的元素,然后v.erase(it)

元素個數:size()

訪問元素:和一般的數組一樣,直接訪問

?

1 #include <cstdio> 2 #include <cstring> 3 #include <string> 4 #include <queue> 5 #include <vector> 6 #include <iostream> 7 using namespace std; 8 struct custom{ 9 int cost,finish; 10 }; 11 vector<int> v[21]; 12 custom cu[1005]; 13 int main(){ 14 //freopen("D:\\INPUT.txt","r",stdin); 15 int n,m,k,q; 16 scanf("%d %d %d %d",&n,&m,&k,&q); 17 int i,j; 18 for(i=0;i<k;i++){ 19 scanf("%d",&cu[i].cost); 20 } 21 for(i=0;i<n&&i<k;i++){ 22 cu[i].finish=cu[i].cost; 23 v[i].push_back(i); 24 } 25 for(;i<m*n&&i<k;i++){ 26 cu[i].finish=cu[v[i%n][v[i%n].size()-1]].finish+cu[i].cost; 27 v[i%n].push_back(i); 28 } 29 for(;i<k;i++){ 30 int mintime=cu[v[0][0]].finish,minnum=0; 31 for(j=1;j<n;j++){ 32 if(cu[v[j][0]].finish<mintime){ 33 minnum=j; 34 mintime=cu[v[j][0]].finish; 35 } 36 } 37 cu[i].finish=cu[v[minnum][v[minnum].size()-1]].finish+cu[i].cost; 38 vector<int>::iterator it=v[minnum].begin(); 39 v[minnum].erase(it); 40 v[minnum].push_back(i); 41 } 42 int num; 43 for(i=0;i<q;i++){ 44 scanf("%d",&num); 45 if(cu[num-1].finish-cu[num-1].cost<540){ 46 //cout<<num-1<<" "<<cu[num-1].finish<<endl; 47 int h=cu[num-1].finish/60+8; 48 if(h>17){ 49 continue; 50 } 51 int m=cu[num-1].finish%60; 52 if(h>9){ 53 cout<<h; 54 } 55 else{ 56 cout<<0<<h; 57 } 58 cout<<":"; 59 if(m>9){ 60 cout<<m; 61 } 62 else{ 63 cout<<0<<m; 64 } 65 cout<<endl; 66 } 67 else{ 68 cout<<"Sorry"<<endl; 69 } 70 } 71 return 0; 72 }

?

轉載于:https://www.cnblogs.com/Deribs4/p/4708101.html

總結

以上是生活随笔為你收集整理的pat1014. Waiting in Line (30)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。