码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #643 (Div. 2) D. Game With Array(构造)

时间:2020-05-16 23:37:41      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:ons   font   data   subarray   end   cin   through   NPU   amp   

Petya and Vasya are competing with each other in a new interesting game as they always do.

At the beginning of the game Petya has to come up with an array of NN positive integers. Sum of all elements in his array should be equal to SS. Then Petya has to select an integer KK such that 0KS0≤K≤S.

In order to win, Vasya has to find a non-empty subarray in Petya‘s array such that the sum of all selected elements equals to either KK or SKS−K. Otherwise Vasya loses.

You are given integers NN and SS. You should determine if Petya can win, considering Vasya plays optimally. If Petya can win, help him to do that.

Input

The first line contains two integers NN and SS (1NS1061≤N≤S≤106) — the required length of the array and the required sum of its elements.

Output

If Petya can win, print "YES" (without quotes) in the first line. Then print Petya‘s array in the second line. The array should contain NN positive integers with sum equal to SS. In the third line print KK. If there are many correct answers, you can print any of them.

If Petya can‘t win, print "NO" (without quotes).

You can print each letter in any register (lowercase or uppercase).

Examples
Input
Copy
1 4
Output
Copy
YES
4
2
Input
Copy
3 4
Output
Copy
NO
Input
Copy
3 8
Output
Copy
YES
2 1 5
4
看了有一会才搞懂题意Petya和Vasya看反了 注意 只要Vasya有可能选出一个不能满足条件的K的话就判Petya赢!
首先找出所有不可能的情况:当S/N==1的时候一定是NO,因为每个数都是正数,这样一定会出现1,因此对手只要选K=1则必输。
如果S/N>1,直接构造S/N S/N S/N ... S/N+S%N 这样只要对手选K=1则必赢。
#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n,s;
    cin>>n>>s;
    if(s/n>1)
    {
        cout<<"YES"<<endl;
        int i;
        for(i=1;i<=n-1;i++)cout<<s/n<< ;
        cout<<s%n+s/n<<endl;
        cout<<1<<endl;
    }
    else cout<<"NO"<<endl;
}

 

Codeforces Round #643 (Div. 2) D. Game With Array(构造)

标签:ons   font   data   subarray   end   cin   through   NPU   amp   

原文地址:https://www.cnblogs.com/lipoicyclic/p/12902814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!