結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | mamekin |
提出日時 | 2015-01-20 21:19:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 913 ms |
コンパイル使用メモリ | 96,592 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-22 23:05:53 |
合計ジャッジ時間 | 1,726 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; int main() { int t; cin >> t; while(--t >= 0){ int n; cin >> n; map<int, int> cnt; for(int i=0; i<n; ++i){ int len; cin >> len; ++ cnt[len]; } int maxCnt = 0; for(auto p : cnt) maxCnt = max(maxCnt, p.second); int ret = min(n / 3, (n - maxCnt) / 2); cout << ret << endl; } return 0; }