algorithm for training water-receiving problemtime limit: 1.0s memory limit: 64.0MBProblem description There is a water room in the school, the water room is equipped with a total of M faucet for students to open water, each faucet per second of the same amount of water, are 1. Now there are n students ready to pick up water, and their initial water order has been determined. These students according to water order from 1 to n number, I number of students of the water intake is WI. When the water starts, 1 to m students each occupy a faucet, and at the same time turn on the tap to connect water. When one of the students J finished their water demand WJ, the next line of students waiting to receive the water, K immediately take over the position of J classmate began to connect water. The process of substitution is instantaneous, without any waste of water. That is, J classmate at the end of the first X seconds to complete the water, then K classmate x+1 seconds immediately began to pick up water. If the current number of water access n ' less than m, then only n ' Faucet water supply, the other m−n ' faucet closed. Now give the water intake of n students, according to the above water rules, ask all the students how many seconds to finish the water. Input format 1th line 2 integers n and m, separated by a space, respectively, indicating the number of water and faucet. Line 2nd n integers W1, w2 、......、 Wn, separated by a space between every two integers, WI indicates the water intake of the student I. Output format output is only one row, 1 integers, indicating the total time required to receive water. Sample Input 5 3
4 4 1 2 1 Sample Output 4 Example input 8 4
23 71 87 32 70 93 80 76 Sample Output 163 Input Output Example 1 description 1 seconds, 3 people connect. At the end of the 1th second, 1, 2, 3rd students each have received water of 1, 3rd students to finish
Water, 4th students to replace 3rd students began to pick up water.
The 2nd second, 3 people connect water. At the end of the 2nd second, 1, 2nd students each have received water of 2, 4th students have been connected
Water volume is 1.
The 3rd second, 3 people connect water. At the end of the 3rd second, 1, 2nd students each have received water of 3, 4th students have been connected
Water volume is 2. 4th students after the water, No. 5th students to replace the 4th students began to connect water.
The 4th second, 3 people connect water. At the end of the 4th second, 1, 2nd students each have received water of 4, 5th students have been connected
Water volume is 1. 1, 2, 5th students after the water, that is, all the water to complete.
The total water connection time is 4 seconds. Data size and convention 1≤n≤10000,1≤m≤100 and M≤n;
1≤wi≤100.
ImportJava.util.Scanner; Public classMain {Static intMaxintP[],intN) { intMax=p[0]; inti; for(i=1;i<n;i++){ if(p[i]>max) Max=P[i]; } returnMax; } Public Static voidMain (string[] args) {//TODO auto-generated Method Stub intM,n; intI,j,second,min,num; Scanner SC=NewScanner (system.in); N=Sc.nextint (); M=Sc.nextint (); intp[]=New int[n]; for(i=0;i<n;i++) P[i]=Sc.nextint (); if(n<=m) {System.out.println (max (p,n)); } if(n>m) {Second=0; Num=0; while(n>m) {min=p[0]; J=0; for(i=0;i<m;i++){ if(min>P[i]) {min=p[i];//find the person who has the least time to fetch water. j=i; } } for(i=0;i<m;i++) {P[i]-=min;//the classmate who is fetching water is minus min .} Second+=min; P[J]=p[m+num];//M+num classmate to replace the students who finish the waternum++; N--;//fetch water classmate reduce one if(n<=m) {System.out.println (max (p,n)+second);//The rest of the water Time + has been hit by the time } } } }}
Algorithm for training water-receiving problem