結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | itezpace |
提出日時 | 2016-07-29 09:39:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 872 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 79,732 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 18:20:02 |
合計ジャッジ時間 | 1,382 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <iostream> #include <map> #include <vector> #include <algorithm> using namespace std; int main(){ int t,n,l; cin>>t; vector<int> v; for(int i=0; i<t; ++i){ cin>>n; map<int,int> m; for(int j=0; j<n; ++j){ cin>>l; map<int,int>::iterator it=m.find(l); if(it!=m.end()){ m[l]++; } else { m.insert(make_pair(l,1)); } } vector<int> vm; map<int,int>::iterator it; for(it=m.begin(); it!=m.end(); ++it){ int c; c=it->second; vm.push_back(c); } int x; x=0; while(1){ int vms=vm.size(); if(vms<3) break; sort(vm.begin(),vm.end(),greater<int>()); if(vm[2]!=0){ vm[0]-=vm[2]; vm[1]-=vm[2]; x+=vm[2]; } vm.erase(vm.begin()+2); } v.push_back(x); } for(int x: v) cout<<x<<endl; return 0; }