CF52A.123-sequence

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a given sequence of integers a1,a2,...,ana_{1},a_{2},...,a_{n} , where every number is from 1 to 3 inclusively. You have to replace the minimum number of numbers in it so that all the numbers in the sequence are equal to each other.

输入格式

The first line contains an integer nn ( 1<=n<=1061<=n<=10^{6} ). The second line contains a sequence of integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=31<=a_{i}<=3 ).

输出格式

Print the minimum number of replacements needed to be performed to make all the numbers in the sequence equal.

输入输出样例

  • 输入#1

    9
    1 3 2 2 2 1 1 2 3
    

    输出#1

    5
    

说明/提示

In the example all the numbers equal to 1 and 3 should be replaced by 2.

首页