| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 1024 MB | 71 | 55 | 43 | 82.692% |
A store has n cashiers numbered sequentially from 1 to n, with c customers in a queue. A customer at the front of the queue is constantly assigned to the first unoccupied cashier, (i.e., if more than one cashier is unoccupied select the cashier with the smallest number). The ith customer’s shopping cart takes ti seconds to process.
Find which cashier will process each customer’s shopping cart.
The first line of input will contain a single integer m that indicates the number datasets to follow. Each dataset is comprised of two lines. The first line of input contains two space-separated integers n and c (1 ≤ n ≤ c ≤ 1000). The second line of input contains c space-separated integers t1, . . . , tc, representing the length of time required to handle that customer.
For each dataset print, on a single line c integers separated by one space, where each integer is the cashier number that handles that customer.
1 3 10 406 424 87 888 871 915 516 81 275 578
1 2 3 3 1 2 3 1 2 1
School > PLU High School Programming Contest > PLU 2019 > Novice 11번