結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | tkzw_21 |
提出日時 | 2015-01-08 23:59:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 73 ms / 5,000 ms |
コード長 | 792 bytes |
コンパイル時間 | 1,698 ms |
コンパイル使用メモリ | 170,280 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 03:23:42 |
合計ジャッジ時間 | 2,560 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 69 ms
6,816 KB |
testcase_01 | AC | 71 ms
6,944 KB |
testcase_02 | AC | 34 ms
6,944 KB |
testcase_03 | AC | 73 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #define INF INT_MAX / 2 #define MOD 1000000007 using namespace std; typedef pair<int,int> PII; typedef long long ll; int main(void) { int t; cin >> t; for(int ii=0;ii<t;ii++){ int n; cin >> n; vector<int> l(n),cnt(n); map<int,int> count; for(int i=0;i<n;i++){ cin >> l[i]; count[l[i]]++; } auto it = count.begin();int m=0; for(;it!=count.end();it++) cnt[m++] = it->second; sort(cnt.begin(),cnt.end(),greater<int>()); int ans = 0; while(cnt[0] != 0){ int kadomatuCount = 0; for(int i=0;i<n;i++){ if(cnt[i]>0){ kadomatuCount++; cnt[i]--; } if(kadomatuCount==3){ kadomatuCount = 0; ans++; break; } } sort(cnt.begin(),cnt.end(),greater<int>()); } cout << ans << endl; } }