結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-06 22:54:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 643 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 212,904 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 14:27:07
合計ジャッジ時間 2,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
5,248 KB
testcase_01 AC 57 ms
5,376 KB
testcase_02 AC 27 ms
5,376 KB
testcase_03 AC 57 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int t;cin>>t;
    while (t--) {
        int n;cin>>n;
        map<int,int> mp;
        for (int i=0;i<n;i++) {
            int a;cin>>a;
            mp[a]++;
        }
        vector<int> v;
        for (auto p:mp) v.push_back(p.second);
        sort(v.rbegin(), v.rend());
        int ans=0;
        if (v.size() >= 3) {
            while (v[2]) {
                ans++;
                v[0]--;
                v[1]--;
                v[2]--;
                sort(v.rbegin(),v.rend());
            }
        }
        cout<<ans<<endl;
    }
    return 0;
}
0