結果
| 問題 | No.29 パワーアップ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-10 14:58:49 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 787 bytes |
| 記録 | |
| コンパイル時間 | 1,477 ms |
| コンパイル使用メモリ | 200,144 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-24 21:18:02 |
| 合計ジャッジ時間 | 2,221 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define ar array
#define sz(x) ((int)x.size())
template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);}
template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);}
int main(){
ios_base::sync_with_stdio(false),cin.tie(0);
map <int, int> mp;
int n;
cin >> n;
for(int i = 0, a;i < n * 3;i++){
cin >> a;
mp[a]++;
}
int ans = 0;
for(auto &ele: mp){
if(ele.second / 2 != 0){
ans += ele.second / 2;
ele.second %= 2;
}
}
int r = 0;
for(auto ele: mp)
r += ele.second;
cout << ans + r / 4 << "\n";
return 0;
}