結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー karinohitokarinohito
提出日時 2024-09-22 15:31:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 212,416 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 15:32:00
合計ジャッジ時間 3,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
6,816 KB
testcase_01 AC 29 ms
6,944 KB
testcase_02 AC 16 ms
6,944 KB
testcase_03 AC 29 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll T;
    cin>>T;
    while(T--){
        ll N;
        cin>>N;
        map<ll,ll> L;
        for(int i=0;i<N;i++){
            ll a;
            cin>>a;
            L[a]++;
        }
        priority_queue<ll> Q;
        for(auto p:L)Q.push(p.second);
        ll an=0;
        while(Q.size()>2){
            vector<ll> V;
            for(int i=0;i<3;i++){
                V.push_back(Q.top());
                Q.pop();
            }
            an++;
            for(int i=0;i<3;i++){
                if(V[i]>1)Q.push(V[i]-1);
            }

        }
        cout<<an<<endl;
    }
}
0