結果
| 問題 |
No.2334 Distinct Cards
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-03 20:58:11 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 2,000 ms |
| コード長 | 466 bytes |
| コンパイル時間 | 1,981 ms |
| コンパイル使用メモリ | 200,388 KB |
| 最終ジャッジ日時 | 2025-02-13 22:27:26 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;
int main() {
cin.tie(0)->sync_with_stdio(0);
int N, K;
cin >> N >> K;
vector<int> cnt(N);
rep(i, N) {
int a;
cin >> a;
cnt[a - 1]++;
}
sort(cnt.rbegin(), cnt.rend());
int ans = 0, i = 0;
while (K > 0) {
K -= cnt[i++];
ans++;
}
cout << ans << "\n";
return 0;
}