結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー knewknowlknewknowl
提出日時 2015-02-10 23:41:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 720 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 61,176 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 18:25:48
合計ジャッジ時間 1,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
6,812 KB
testcase_01 AC 26 ms
6,940 KB
testcase_02 AC 13 ms
6,944 KB
testcase_03 AC 27 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |   scanf("%d",&t);
      |   ~~~~~^~~~~~~~~
main.cpp:13:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:15:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |       int l;scanf("%d",&l);
      |             ~~~~~^~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <map>
#include <vector>
#include <queue>
using namespace std;
int main(){
  int t;
  scanf("%d",&t);
  while(t--){
    int n;
    map<int,int> tbl;
    scanf("%d",&n);
    for(int i=0;i<n;++i){
      int l;scanf("%d",&l);
      tbl[l]++;
    }
    priority_queue<int> Q;
    for(map<int,int>::iterator it=tbl.begin();it!=tbl.end();++it){
      Q.push((*it).second);
    }
    int ans = 0;
    while(true){
      if(Q.size()<3) break;
      int a = Q.top(); Q.pop();
      int b = Q.top(); Q.pop();
      int c = Q.top(); Q.pop();
      ++ans;
      if(a>1) Q.push(a-1);
      if(b>1) Q.push(b-1);
      if(c>1) Q.push(c-1);
    }
    printf("%d\n",ans);
  }
  return 0;
}
0