您的位置:首页 > Web前端

Codeforces Round #441 B. Divisiblity of Differences

2017-10-19 11:12 543 查看
B. Divisiblity of Differences

time limit per test
1 second

memory limit per test
512 megabytes

input
standard input

output
standard output

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. 

Examples

input
3 2 31 8 4

output
Yes1 4

input
3 3 31 8 4

output
No


input
4 3 52 7 7 7

output
Yes2 7 7

从序列n中挑选k个,使挑选出来的k个被m除后余数相同

打表,然后选取,看是否可以找到

//
//  main.cpp
//  B. Divisiblity of Differences
//
//  Created by wenhan on 2017/10/17.
//  Copyright © 2017年 wenhan. All rights reserved.
//

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int a[1000005];
int b[1000005];
int main() {
int n,k,m;
scanf("%d%d%d",&n,&k,&m);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
memset(b, 0, sizeof(b));
for(int i=1;i<=n;i++)
b[a[i]%m]++;
int i;
for(i=0;i<m;i++)
if(k<=b[i])
break;
if(i==m)
printf("No\n");
else
{
printf("Yes\n");
int f=0;
for(int j=1;j<=n;j++)
{
if(f==0&&a[j]%m==i)
{
f++;
printf("%d",a[j]);
}
else if(a[j]%m==i)
{
f++;
printf(" %d",a[j]);
}
if(f==k)
break;
}
printf("\n");
}
// insert code here...
//std::cout << "Hello, World!\n";
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: