{"problem":{"name":"Not so Diverse","description":{"content":"Takahashi has $N$ balls. Initially, an integer $A_i$ is written on the $i$\\-th ball. He would like to rewrite the integer on some balls so that there are at most $K$ different integers written on the ","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"arc086_a"},"statements":[{"statement_type":"Markdown","content":"Takahashi has $N$ balls. Initially, an integer $A_i$ is written on the $i$\\-th ball.\nHe would like to rewrite the integer on some balls so that there are at most $K$ different integers written on the $N$ balls.\nFind the minimum number of balls that Takahashi needs to rewrite the integers on them.\n\n## Constraints\n\n*   $1 \\leq K \\leq N \\leq 200000$\n*   $1 \\leq A_i \\leq N$\n*   All input values are integers.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$ $K$\n$A_1$ $A_2$ ... $A_N$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"arc086_a","tags":[],"sample_group":[["5 2\n1 1 2 2 5","1\n\nFor example, if we rewrite the integer on the fifth ball to $2$, there are two different integers written on the balls: $1$ and $2$. On the other hand, it is not possible to rewrite the integers on zero balls so that there are at most two different integers written on the balls, so we should print $1$."],["4 4\n1 1 2 2","0\n\nAlready in the beginning, there are two different integers written on the balls, so we do not need to rewrite anything."],["10 3\n5 1 3 2 4 1 1 2 3 4","3"]],"created_at":"2026-03-03 11:01:13"}}