CodeForces 876B

短命女 2022-06-07 10:48 297阅读 0赞

问题描述:

You are given a multiset of n integers. You should select exactly k of them in a such way that the difference between any two of them is divisible by m, or tell that it is impossible.

Numbers can be repeated in the original multiset and in the multiset of selected numbers, but number of occurrences of any number in multiset of selected numbers should not exceed the number of its occurrences in the original multiset.

Input

First line contains three integers n, k and m (2 ≤ k ≤ n ≤ 100 000, 1 ≤ m ≤ 100 000) — number of integers in the multiset, number of integers you should select and the required divisor of any pair of selected integers.

Second line contains n integers a1, a2, …, an (0 ≤ ai ≤ 109) — the numbers in the multiset.

Output

If it is not possible to select k numbers in the desired way, output «No» (without the quotes).

Otherwise, in the first line of output print «Yes» (without the quotes). In the second line print k integers b1, b2, …, bk — the selected numbers. If there are multiple possible solutions, print any of them.

Example

Input

  1. 3 2 3
  2. 1 8 4

Output

  1. Yes
  2. 1 4

Input

  1. 3 3 3
  2. 1 8 4

Output

  1. No

Input

  1. 4 3 5
  2. 2 7 7 7

Output

  1. Yes
  2. 2 7 7

题目题意:题目给我们一个含有n个数的数字集合,问我们能否找到一个含有k个数的数集,使得任意俩个数之差都可以被m整除。

题目分析:俩个之差能被m整除,那么这俩个对m取余,余数相等。

a1=k1*m+b a2=k2*m+b 则(a1-a2)%m=(k1-k2)*m %m =0

代码如下:

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cmath>
  4. #include<vector>
  5. using namespace std;
  6. const int maxn=1e5+100;
  7. vector<int> vec[maxn];
  8. int main()
  9. {
  10. int n,k,m;
  11. scanf("%d%d%d",&n,&k,&m);
  12. for (int i=0;i<n;i++) {
  13. int a,b;
  14. scanf("%d",&a);
  15. b=a%m;
  16. vec[b].push_back(a);
  17. }
  18. bool flag=false;
  19. for (int i=0;i<m;i++) {
  20. if ((vec[i].size())>=k) {
  21. puts("Yes");
  22. flag=true;
  23. for (int j=0;j<k;j++) {
  24. if (j==k-1) printf("%d\n",vec[i][j]);
  25. else printf("%d ",vec[i][j]);
  26. }
  27. }
  28. if (flag) break;
  29. }
  30. if (!flag)
  31. puts("No");
  32. return 0;
  33. }

发表评论

表情:
评论列表 (有 0 条评论,297人围观)

还没有评论,来说两句吧...

相关阅读