結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | pekempey |
提出日時 | 2016-12-22 21:18:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 30 ms / 5,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 177,752 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-08 11:16:57 |
合計ジャッジ時間 | 2,319 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
6,816 KB |
testcase_01 | AC | 29 ms
6,940 KB |
testcase_02 | AC | 16 ms
6,944 KB |
testcase_03 | AC | 30 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int T; cin >> T; while (T--) { int n; cin >> n; map<int, int> mp; for (int i = 0; i < n; i++) { int a; scanf("%d", &a); mp[a]++; } priority_queue<int> q; for (auto kv : mp) { q.push(kv.second); } int ans = 0; while (q.size() >= 3) { int x = q.top(); q.pop(); int y = q.top(); q.pop(); int z = q.top(); q.pop(); if (x - 1 > 0) q.push(x - 1); if (y - 1 > 0) q.push(y - 1); if (z - 1 > 0) q.push(z - 1); ans++; } cout << ans << endl; } }