結果
| 問題 | 
                            No.2777 Wild Flush
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2024-06-07 21:46:10 | 
| 言語 | C++23  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 13 ms / 2,000 ms | 
| コード長 | 543 bytes | 
| コンパイル時間 | 3,810 ms | 
| コンパイル使用メモリ | 256,236 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-12-26 07:37:26 | 
| 合計ジャッジ時間 | 5,018 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 24 | 
ソースコード
#pragma GCC optimize("O3")
#ifdef LOCAL
#include "algo/debug_ver3.hpp"
#else
#define debug(...)
#define debugArr(...)
#endif
#include <bits/stdc++.h>
using namespace std;
int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n, k;
	cin >> n >> k;
	vector<int> a(n);
	for (int i = 0; i < n; ++i) {
		cin >> a[i];
	}
	vector<int> cnt(n + 1);
	for (int i = 0; i < n; ++i) {
		++cnt[a[i]];
	}
	bool ans = cnt[0] >= k;
	for (int i = 1; i <= n; ++i) {
		ans |= cnt[0] + cnt[i] >= k;
	}
	cout << (ans ? "Yes" : "No") << '\n';
}