結果
問題 | No.2334 Distinct Cards |
ユーザー |
|
提出日時 | 2023-06-02 21:21:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 519 bytes |
コンパイル時間 | 1,598 ms |
コンパイル使用メモリ | 176,616 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-12-28 16:01:38 |
合計ジャッジ時間 | 2,730 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; vector<int> cnt(200000); for(int i = 0; i < n; i++){ int v; cin >> v; cnt[v]++; } sort(cnt.rbegin(), cnt.rend()); set<int> S; for(int i = 0; i < 200000; i++){ while(k >= 1 && cnt[i] >= 1){ k--; cnt[i]--; S.insert(i); } } cout << S.size() << '\n'; }