結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | ゆぽ |
提出日時 | 2016-10-11 19:53:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,525 bytes |
コンパイル時間 | 1,032 ms |
コンパイル使用メモリ | 93,376 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 01:33:08 |
合計ジャッジ時間 | 1,732 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <queue> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> using namespace std; typedef long long ll; typedef unsigned long long ull; static const double EPS = 1e-8; static const double PI = 4.0 * atan(1.0); static const double PI2 = 8.0 * atan(1.0); #define REP(i,n) for(int i=0;i<(int)n;++i) #define ALL(c) (c).begin(),(c).end() #define CLEAR(v) memset(v,0,sizeof(v)) #define MP(a,b) make_pair((a),(b)) #define ABS(a) ((a)>0?(a):-(a)) #define FOR(i,s,n) for(int i=s;i<(int)n;++i) int N; int L[100]; vector<int> cnt; void solve() { cin >> N; REP(i, N) cin >> L[i]; sort(L, L + N); cnt.clear(); int c = 0; FOR(i, 1, N) { ++c; if (L[i] == L[i - 1]) continue; cnt.push_back(c); c = 0; } cnt.push_back(++c); sort(ALL(cnt)); reverse(ALL(cnt)); int res = 0; bool f, g; REP(i, cnt.size()) { while (cnt[i] > 0) { f = false; FOR(j, i + 1, cnt.size()) if (cnt[j] > 0) { FOR(k, j + 1, cnt.size()) if (cnt[k] > 0) { --cnt[i]; --cnt[j]; --cnt[k]; ++res; f = true; break; } if (f) break; } if (!f) break; } } cout << res << endl; } int main(int argc, char **argv) { int T; cin >> T; REP(i, T) solve(); return 0; }