Till I Collapse

题意翻译

对于 $k=1,2,3,\cdots,n$,分别求出最小的 $m$,使得存在一种将 $n$ 个数划分成 $m$ 段的方案,每段中不同数字的个数不超过 $k$ 个。

题目描述

Rick and Morty want to find MR. PBH and they can't do it alone. So they need of Mr. Meeseeks. They Have generated $ n $ Mr. Meeseeks, standing in a line numbered from $ 1 $ to $ n $ . Each of them has his own color. $ i $ -th Mr. Meeseeks' color is $ a_{i} $ . Rick and Morty are gathering their army and they want to divide Mr. Meeseeks into some squads. They don't want their squads to be too colorful, so each squad should have Mr. Meeseeks of at most $ k $ different colors. Also each squad should be a continuous subarray of Mr. Meeseeks in the line. Meaning that for each $ 1<=i<=e<=j<=n $ , if Mr. Meeseeks number $ i $ and Mr. Meeseeks number $ j $ are in the same squad then Mr. Meeseeks number $ e $ should be in that same squad. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF786C/f2b873f46d1ce1d5117f05fee6c23499da101533.png)Also, each squad needs its own presidio, and building a presidio needs money, so they want the total number of squads to be minimized. Rick and Morty haven't finalized the exact value of $ k $ , so in order to choose it, for each $ k $ between $ 1 $ and $ n $ (inclusive) need to know the minimum number of presidios needed.

输入输出格式

输入格式


The first line of input contains a single integer $ n $ ( $ 1<=n<=10^{5} $ ) — number of Mr. Meeseeks. The second line contains $ n $ integers $ a_{1},a_{2},...,a_{n} $ separated by spaces ( $ 1<=a_{i}<=n $ ) — colors of Mr. Meeseeks in order they standing in a line.

输出格式


In the first and only line of input print $ n $ integers separated by spaces. $ i $ -th integer should be the minimum number of presidios needed if the value of $ k $ is $ i $ .

输入输出样例

输入样例 #1

5
1 3 4 3 3

输出样例 #1

4 2 1 1 1 

输入样例 #2

8
1 5 7 8 1 7 6 1

输出样例 #2

8 4 3 2 1 1 1 1 

说明

For the first sample testcase, some optimal ways of dividing army into squads for each $ k $ are: 1. $ [1],[3],[4],[3,3] $ 2. $ [1],[3,4,3,3] $ 3. $ [1,3,4,3,3] $ 4. $ [1,3,4,3,3] $ 5. $ [1,3,4,3,3] $ For the second testcase, some optimal ways of dividing army into squads for each $ k $ are: 1. $ [1],[5],[7],[8],[1],[7],[6],[1] $ 2. $ [1,5],[7,8],[1,7],[6,1] $ 3. $ [1,5,7],[8],[1,7,6,1] $ 4. $ [1,5,7,8],[1,7,6,1] $ 5. $ [1,5,7,8,1,7,6,1] $ 6. $ [1,5,7,8,1,7,6,1] $ 7. $ [1,5,7,8,1,7,6,1] $ 8. $ [1,5,7,8,1,7,6,1] $