結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー 0w10w1
提出日時 2016-11-27 16:44:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 881 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 180,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 14:16:02
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

signed main(){
  int T; cin >> T;
  for( int kase = 0; kase < T; ++kase ){
    int N; cin >> N;
    vector< int > L( N );
    for( int i = 0; i < N; ++i )
      cin >> L[ i ];
    priority_queue< pair< int, int > > pq;
    map< int, int > lcnt;
    for( int i = 0; i < N; ++i )
      ++lcnt[ L[ i ] ];
    for( auto it = lcnt.begin(); it != lcnt.end(); ++it )
      pq.emplace( it->second, it->first );
    int ans = 0;
    while( pq.size() >= 3 ){
      auto a = pq.top(); pq.pop();
      auto b = pq.top(); pq.pop();
      auto c = pq.top(); pq.pop();
      ++ans;
      if( a.first - 1 > 0 )
        pq.emplace( a.first - 1, a.second );
      if( b.first - 1 > 0 )
        pq.emplace( b.first - 1, b.second );
      if( c.first - 1 > 0 )
        pq.emplace( c.first - 1, c.second );
    }
    cout << ans << endl;
  }
  return 0;
}
0