CF195B.After Training

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

After a team finished their training session on Euro football championship, Valeric was commissioned to gather the balls and sort them into baskets. Overall the stadium has nn balls and mm baskets. The baskets are positioned in a row from left to right and they are numbered with numbers from 11 to mm , correspondingly. The balls are numbered with numbers from 11 to nn .

Valeric decided to sort the balls in the order of increasing of their numbers by the following scheme. He will put each new ball in the basket with the least number of balls. And if he's got several variants, he chooses the basket which stands closer to the middle. That means that he chooses the basket for which is minimum, where ii is the number of the basket. If in this case Valeric still has multiple variants, he chooses the basket with the minimum number.

For every ball print the number of the basket where it will go according to Valeric's scheme.

Note that the balls are sorted into baskets in the order of increasing numbers, that is, the first ball goes first, then goes the second ball and so on.

输入格式

The first line contains two space-separated integers nn , mm (1<=n,m<=105)(1<=n,m<=10^{5}) — the number of balls and baskets, correspondingly.

输出格式

Print nn numbers, one per line. The ii -th line must contain the number of the basket for the ii -th ball.

输入输出样例

  • 输入#1

    4 3
    

    输出#1

    2
    1
    3
    2
    
  • 输入#2

    3 1
    

    输出#2

    1
    1
    1
    
首页