CF961A.Tetris

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a following process.

There is a platform with nn columns. 1×11 \times 1 squares are appearing one after another in some columns on this platform. If there are no squares in the column, a square will occupy the bottom row. Otherwise a square will appear at the top of the highest square of this column.

When all of the nn columns have at least one square in them, the bottom row is being removed. You will receive 11 point for this, and all the squares left will fall down one row.

You task is to calculate the amount of points you will receive.

输入格式

The first line of input contain 2 integer numbers nn and mm ( 1n,m10001 \le n, m \le 1000 ) — the length of the platform and the number of the squares.

The next line contain mm integer numbers c1,c2,,cmc_1, c_2, \dots, c_m ( 1cin1 \le c_i \le n ) — column in which ii -th square will appear.

输出格式

Print one integer — the amount of points you will receive.

输入输出样例

  • 输入#1

    3 9
    1 1 2 2 2 3 1 2 3
    

    输出#1

    2
    

说明/提示

In the sample case the answer will be equal to 22 because after the appearing of 66 -th square will be removed one row (counts of the squares on the platform will look like [2 3 1][2~ 3~ 1] , and after removing one row will be [1 2 0][1~ 2~ 0] ).

After the appearing of 99 -th square counts will be [2 3 1][2~ 3~ 1] , and after removing one row it will look like [1 2 0][1~ 2~ 0] .

So the answer will be equal to 22 .

首页