// #牛客春招刷题训练营# https://www.nowcoder.com/discuss/726480854079250432 #include <iostream> #include <map> using namespace std; map<int,int> m;//----------用map记录出现次数 int main() { ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0); int n, a; int max = 0;//--------------max记录...