Computer Science, asked by naitik5110, 6 months ago

Problem
There are N people numbered from 1 to N, standing in a queue to withdraw money from an ATM. The queue is formed in ascending order of their number. The person numbered i wants to withdraw amount Ai. The maximum amount a person can withdraw at a time is X. If they need more money than X, they need to go stand at the end of the queue and wait for their turn in line. A person leaves the queue once they have withdrawn the required amount.

You need to find the order in which all the people leave the queue.
Input
The first line of the input gives the number of test cases T. T test cases follow.

The first line of each test case gives two space separated integers: the number of people standing in the queue, N and the maximum amount X that can be withdrawn in one turn.
The next line contains N space separated integers Ai.
Output
For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the space separated list of integers that denote the order in which the people leave the queue.

Limits
Time limit: 20 seconds per test set.
Memory limit: 1GB.
1 ≤ T ≤ 100.

Test Set 1
1 ≤ N ≤ 100.
1 ≤ Ai ≤ 100.
1 ≤ X ≤ 100.

Test Set 2
1 ≤ N ≤ 105 for at most 10 test cases. For the remaining cases, 1 ≤ N ≤ 100
1 ≤ Ai ≤ 109.
1 ≤ X ≤ 109.

Sample

Input

Output

2
3 3
2 7 4
5 6
9 10 4 7 2


Case #1: 1 3 2
Case #2: 3 5 1 2 4

In Sample Case #1, there are 3 people and the limit to withdraw in one turn is 3. Below is step-by-step description of how the process will look like:
The queue initially looks like [1, 2, 3]. The first person withdraws an amount of 2 in their first attempt and leaves the queue.
The queue now looks like [2, 3]. The second person wants to withdraw an amount of 7, but they can withdraw only 3 in their first turn. Since they still need to withdraw an amount of 4, they have to rejoin the queue at the end of the line.
The queue now looks like [3, 2]. The third person needs to withdraw an amount of 4 but they can only withdraw 3 in their first turn so, they rejoin the queue at the end of the line to withdraw amount of 1 later.
The queue now looks like [2, 3]. The second person still needs to withdraw an amount of 4. They withdraw an amount of 3 in their second turn and waits for their next turn to arrive to withdraw the remaining amount of 1.
The queue now looks like [3, 2]. The third person withdraws the remaining amount of 1 and leaves the queue.
The queue now looks like [2]. The second person withdraws the remaining amount of 1 and leaves the queue.
The queue is now empty.
The order in which people leave the queue is [1, 3, 2].


USE JAVA

Answers

Answered by varun2008theskater
3

Answer:

SORRY

Explanation:

I NEED SOME POINTS

Answered by prajwalgowda733
2

Answer:

#include<iostream>

#include<vector>

#include<algorithm>

#define h pair<int,int>

using namespace std;

bool fun(h a, h b)

{

  if(a.second>=b.second)

   return 0;

   

   return 1;

}

int main()

{

   int t;

   cin>>t;

   while(t--)

   {

   int n,x,i,k;

    cin>>n>>x;

     h p[n+1];

   for(i=1;i<=n;i++)

   {

    cin>>k;

     p[i].first=i;

     p[i].second=k/x;

     if(k%x)

     p[i].second++;

   }

    sort(p+1,p+(n+1),fun);

   for(i=1;i<=n;i++)

   cout<<p[i].first<<" ";

   

   cout<<endl;

   }

   return 0;

}

Explanation:

Similar questions