結果
問題 | No.29 パワーアップ |
ユーザー |
|
提出日時 | 2022-03-10 14:58:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 787 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 199,484 KB |
最終ジャッジ日時 | 2025-01-28 07:58:14 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; }