結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー cielciel
提出日時 2015-01-12 02:34:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 56,560 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 04:29:07
合計ジャッジ時間 1,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <queue>
#include <map>
#include <cstdio>
using namespace std;
int main(){
	int T,N,L;
	for(scanf("%d",&T);T--;){
		map<int,int>m;
		for(scanf("%d",&N);N--;m[L]++)scanf("%d",&L);
		priority_queue<pair<int,int> >q;
		for(map<int,int>::iterator it=m.begin();it!=m.end();++it)q.push(make_pair(it->second,it->first));
		int r=0;
		for(;q.size()>2;r++){
			vector<pair<int,int> >v(3);
			for(int i=0;i<3;i++)v[i]=q.top(),q.pop();
			for(int i=0;i<3;i++)if(v[i].first>1)q.push(make_pair(v[i].first-1,v[i].second));
		}
		printf("%d\n",r);
	}
}
0