CF63B.Settlers' Training

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In a strategic computer game "Settlers II" one has to build defense structures to expand and protect the territory. Let's take one of these buildings. At the moment the defense structure accommodates exactly nn soldiers. Within this task we can assume that the number of soldiers in the defense structure won't either increase or decrease.

Every soldier has a rank — some natural number from 11 to kk . 11 stands for a private and kk stands for a general. The higher the rank of the soldier is, the better he fights. Therefore, the player profits from having the soldiers of the highest possible rank.

To increase the ranks of soldiers they need to train. But the soldiers won't train for free, and each training session requires one golden coin. On each training session all the nn soldiers are present.

At the end of each training session the soldiers' ranks increase as follows. First all the soldiers are divided into groups with the same rank, so that the least possible number of groups is formed. Then, within each of the groups where the soldiers below the rank kk are present, exactly one soldier increases his rank by one.

You know the ranks of all nn soldiers at the moment. Determine the number of golden coins that are needed to increase the ranks of all the soldiers to the rank kk .

输入格式

The first line contains two integers nn and kk ( 1<=n,k<=1001<=n,k<=100 ). They represent the number of soldiers and the number of different ranks correspondingly. The second line contains nn numbers in the non-decreasing order. The ii -th of them, aia_{i} , represents the rank of the ii -th soldier in the defense building ( 1<=i<=n1<=i<=n , 1<=ai<=k1<=a_{i}<=k ).

输出格式

Print a single integer — the number of golden coins needed to raise all the soldiers to the maximal rank.

输入输出样例

  • 输入#1

    4 4
    1 2 2 3
    

    输出#1

    4
  • 输入#2

    4 3
    1 1 1 1
    

    输出#2

    5

说明/提示

In the first example the ranks will be raised in the following manner:

1 2 2 3 2 2 3 4 2 3 4 4 3 4 4 4 4 4 4 4

Thus totals to 4 training sessions that require 4 golden coins.

首页