結果
| 問題 |
No.2334 Distinct Cards
|
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2023-06-02 21:23:28 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 491 bytes |
| コンパイル時間 | 2,009 ms |
| コンパイル使用メモリ | 197,828 KB |
| 最終ジャッジ日時 | 2025-02-13 17:35:39 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, k;
cin >> n >> k;
vector<int> b(n, 0);
for (int i = 0; i < n; i++) {
int a;
cin >> a;
a--;
b[a]++;
}
sort(b.begin(), b.end(), greater<>());
int r = 0, t = k;
for (const auto &c : b) {
r++;
t -= c;
if (t <= 0) break;
}
cout << r << endl;
return 0;
}
merom686