CF468B.Two Sets

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Little X has nn distinct integers: p1,p2,...,pnp_{1},p_{2},...,p_{n} . He wants to divide all of them into two sets AA and BB . The following two conditions must be satisfied:

  • If number xx belongs to set AA , then number axa-x must also belong to set AA .
  • If number xx belongs to set BB , then number bxb-x must also belong to set BB .

Help Little X divide the numbers into two sets or determine that it's impossible.

输入格式

The first line contains three space-separated integers n,a,bn,a,b (1<=n<=105; 1<=a,b<=109)(1<=n<=10^{5}; 1<=a,b<=10^{9}) . The next line contains nn space-separated distinct integers p1,p2,...,pn (1<=pi<=109)p_{1},p_{2},...,p_{n} (1<=p_{i}<=10^{9}) .

输出格式

If there is a way to divide the numbers into two sets, then print "YES" in the first line. Then print nn integers: b1,b2,...,bnb_{1},b_{2},...,b_{n} ( bib_{i} equals either 00 , or 11 ), describing the division. If bib_{i} equals to 00 , then pip_{i} belongs to set AA , otherwise it belongs to set BB .

If it's impossible, print "NO" (without the quotes).

输入输出样例

  • 输入#1

    4 5 9
    2 3 4 5
    

    输出#1

    YES
    0 0 1 1
    
  • 输入#2

    3 3 4
    1 2 4
    

    输出#2

    NO
    

说明/提示

It's OK if all the numbers are in the same set, and the other one is empty.

首页