Petya and Inequiations 题解

Little Petya loves inequations. Help him find n positive integers a1, a2, ..., an, such that the following two conditions are satisfied:

  • a12 + a22 + ... + an2 ≥ x
  • a1 + a2 + ... + an ≤ y
Input

The first line contains three space-separated integers nx and y (1 ≤ n ≤ 105, 1 ≤ x ≤ 1012, 1 ≤ y ≤ 106).

Please do not use the %lld specificator to read or write 64-bit integers in С++. It is recommended to use cin, cout streams or the %I64d specificator.

Output

Print n positive integers that satisfy the conditions, one integer per line. If such numbers do not exist, print a single number "-1". If there are several solutions, print any of them.

Example
Input
5 15 15
Output
4
4
1
1
2
Input
2 3 2
Output
-1
Input
1 99 11
Output
11

思路:

a1 + a2 + ... + an= y,那么现在想办法如何拆分y使得a12 + a22 + ... + an2取得最大值,当其中n-1个数都取1,剩下一个数取y-(n-1)时a12 + a22 + ... + an2取得最大值。因此,令a1 + a2 + ... + an= y时,若a12 + a22 + ... + an2大于等于x,那么存在解,且此时的a1,…,an是其中的一组解,否则不存在解。

代码:

#include <iostream>

using namespace std;

int main()
{
    int64_t n,y;
    int64_t x;
    while(cin>>n>>x>>y)
    {
        if(y>=n)
        {
            int64_t temp=y-(n-1);
            if(temp*temp+(n-1)>=x)
            {
                cout<<temp<<endl;
                for(int i=0;i<n-1;i++)
                    cout<<1<<endl;
            }
            else
                cout<<-1<<endl;
        }
        else
            cout<<-1<<endl;

    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值