Codeforces Round #280 (Div. 2)D. Vanya and Computer Game(二分)

题目链接
题意:A,B俩人一起打怪,A一秒打X次,B一秒打Y次,(每个人的攻击是对所有的怪物都有效果),每个怪物被打ai下就会死掉,问最后一下是谁打的。
解法 :A打一次是1/X 秒
B打一次是1/Y秒,浮点数不好计算,我们把二者乘以XY,那么
A打一次就是Y秒,B打一次就是X秒。然后二分怪物被打死的时间t.条件是t/X+t/Y>=a


#define CF
#ifndef CF
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<string>
#include<iostream>
#include<set>
#include<vector>
#else
#include<bits/stdc++.h>
#endif // CF
using namespace std;
#define LL long long
#define pb push_back
#define X first
#define Y second
#define cl(a,b) memset(a,b,sizeof(a))
typedef pair<long long ,long long > P;
const int maxn=100005;
const LL inf=1LL<<60;
const LL mod=1e9+7;

int main(){
    LL n,x,y;
    cin>>n>>x>>y;
    for(int i=0;i<n;i++){
        LL a;cin>>a;
        LL l=0,r=1LL<<62;
        while(l<=r){
            LL mid=(l+r)/2;
            if(mid/x+mid/y>=a)r=mid-1;
            else l=mid+1;
        }
        if(l%x==0&&l%y==0)puts("Both");
        else if(l%y==0)puts("Vanya");
        else puts("Vova");
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值