結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | not_522 |
提出日時 | 2015-07-23 04:23:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 60 ms / 5,000 ms |
コード長 | 504 bytes |
コンパイル時間 | 1,431 ms |
コンパイル使用メモリ | 173,496 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 12:11:36 |
合計ジャッジ時間 | 2,626 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
6,816 KB |
testcase_01 | AC | 57 ms
6,944 KB |
testcase_02 | AC | 28 ms
6,940 KB |
testcase_03 | AC | 60 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; void solve() { int n; cin >> n; map<int, int> m; for (int i = 0; i < n; ++i) { int l; cin >> l; ++m[l]; } vector<int> v = {0, 0, 0}; for (auto i : m) v.emplace_back(i.second); sort(v.rbegin(), v.rend()); int res = 0; while (v[2] > 0) { for (int i = 0; i < 3; ++i) --v[i]; sort(v.rbegin(), v.rend()); ++res; } cout << res << endl; } int main() { int t; cin >> t; for (int i = 0; i < t; ++i) solve(); }