codeforce 1478A A. Nezzar and Colorful Balls 额?模拟 C
https://codeforces.com/contest/1478/problem/A.
A. Nezzar and Colorful Balls
time limit per test
1 second
memory limit per test
512 megabytes
input
standard input
output
standard output
Nezzar has n">nn balls, numbered with integers 1,2,…,n">1,2,…,n1,2,…,n. Numbers a1,a2,…,an">a1,a2,…,ana1,a2,…,an are written on them, respectively. Numbers on those balls form a non-decreasing sequence, which means that ai≤ai+1">ai≤ai+1ai≤ai+1 for all 1≤i<n">1≤i<n1≤i
Nezzar wants to color the balls using the minimum number of colors, such that the following holds.
- For any color, numbers on balls will form a strictly increasing sequence if he keeps balls with this chosen color and discards all other balls.
Note that a sequence with the length at most 1">11 is considered as a strictly increasing sequence.
Please help Nezzar determine the minimum number of colors.
Input
The first line contains a single integer t">tt (1≤t≤100">1≤t≤1001≤t≤100) — the number of testcases.
The first line of each test case contains a single integer n">nn (1≤n≤100">1≤n≤1001≤n≤100).
The second line of each test case contains n">nn integers a1,a2,…,an">a1,a2,…,ana1,a2,…,an (1≤ai≤n">1≤ai≤n1≤ai≤n). It is guaranteed that a1≤a2≤…≤an">a1≤a2≤…≤ana1≤a2≤…≤an.
Output
For each test case, output the minimum number of colors Nezzar can use.
Example
input
Copy
5
6
1 1 1 2 3 4
5
1 1 2 2 3
4
2 2 2 2
3
1 2 3
1
1
output
Copy
3
2
4
1
1
Note
Let's match each color with some numbers. Then:
In the first test case, one optimal color assignment is [1,2,3,3,2,1]">[1,2,3,3,2,1][1,2,3,3,2,1].
In the second test case, one optimal color assignment is [1,2,1,2,1]">[1,2,1,2,1][1,2,1,2,1].
分析
题目要找到任意的数据都可以形成严格的上升序列
那么当一个数字重复出现的时候,一定要分配到一个数组里
就看看所有数字最多重复出现了多少次就可以了
代码
https://codeforces.com/contest/1478/submission/105679337
#include
#include
#include
#include
#include
#include <string.h>
#include
#include
#include <string>
#include
#include
#include
#include
#include
#include