【codeforces454div2】A. Masha and Bears

A family consisting of father bear, mother bear and son bear owns three cars. Father bear can climb into the largest car and he likes it. Also, mother bear can climb into the middle car and she likes it. Moreover, son bear can climb into the smallest car and he likes it. It’s known that the largest car is strictly larger than the middle car, and the middle car is strictly larger than the smallest car.

Masha came to test these cars. She could climb into all cars, but she liked only the smallest car.

It’s known that a character with size a can climb into some car with size b if and only if a ≤ b, he or she likes it if and only if he can climb into this car and 2a ≥ b.

You are given sizes of bears and Masha. Find out some possible integer non-negative sizes of cars.

Input
You are given four integers V1, V2, V3, Vm(1 ≤ Vi ≤ 100) — sizes of father bear, mother bear, son bear and Masha, respectively. It’s guaranteed that V1 > V2 > V3.

Output
Output three integers — sizes of father bear’s car, mother bear’s car and son bear’s car, respectively.

If there are multiple possible solutions, print any.

If there is no solution, print “-1” (without quotes).

Examples
input
50 30 10 10
output
50
30
10
input
100 50 10 21
output
-1

注意:Masha只喜欢最小的车,中车大车都不喜欢,得出隐藏不等式2*size(masha)< size(中车),所以需要size(中车)尽量大。

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main ()
{
    int a, b, c, d;
    cin>>a>>b>>c>>d;
    if(d>2*c||c>2*d||d>=b)
    {
        puts("-1");
    }
    else
        printf("%d\n%d\n%d\n", 2*a,2*b,max(c,d));
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值