結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | ciel |
提出日時 | 2015-01-12 02:39:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 488 ms |
コンパイル使用メモリ | 61,824 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 04:29:13 |
合計ジャッジ時間 | 1,020 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | for(scanf("%d",&T);T--;){ | ~~~~~^~~~~~~~~ main.cpp:11:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | for(scanf("%d",&N);N--;m[L]++)scanf("%d",&L); | ~~~~~^~~~~~~~~ main.cpp:11:52: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | for(scanf("%d",&N);N--;m[L]++)scanf("%d",&L); | ~~~~~^~~~~~~~~
ソースコード
#include <queue> #include <map> #include <algorithm> #include <cstdio> #include <climits> 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,mi; for(;q.size()>2;r+=mi){ mi=INT_MAX; vector<pair<int,int> >v(3); for(int i=0;i<3;i++)v[i]=q.top(),mi=min(mi,v[i].first),q.pop(); for(int i=0;i<3;i++)if(v[i].first>mi)q.push(make_pair(v[i].first-mi,v[i].second)); } printf("%d\n",r); } }