Codefoces-811A Vladik and Courtesy [模拟]

来源:互联网 发布:淘宝旺铺助手 编辑:程序博客网 时间:2024/06/08 05:38
题目描述
A. Vladik and Courtesy
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

At regular competition Vladik and Valera won a and b candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vladik for same reason gave 3 candies to Valera in next turn.

More formally, the guys take turns giving each other one candy more than they received in the previous turn.

This continued until the moment when one of them couldn’t give the right amount of candy. Candies, which guys got from each other, they don’t consider as their own. You need to know, who is the first who can’t give the right amount of candy.

Input

Single line of input data contains two space-separated integers ab (1 ≤ a, b ≤ 109) — number of Vladik and Valera candies respectively.

Output

Pring a single line "Vladik’’ in case, if Vladik first who can’t give right amount of candy, or "Valera’’ otherwise.

Examples
input
1 1
output
Valera
input
7 6
output
Vladik
Note

Illustration for first test case:

Illustration for second test case:

题意

对A和B两个数轮流操作,第i轮对A删除2*i-1的值,对B删除2*i的值,问哪个谁先小于0? A先手。

只需要根据等差数列求和列出两个不等式即可:

对于A来说,直到第i轮消耗的数量为:i*i<=a

对于B来说,直到第i轮消耗的数量为:i*(i+1)<=b

因此,只要求最大的ia和ib即可,二者中小的先消耗光,而相等的时候答案就输出A,因为A先手。

#include <bits/stdc++.h>#define ll long longusing namespace std;ll a,b,x,y;int main() {cin>>a>>b;for(x=0;x*x<=a;x++);for(y=0;y*(y+1)<=b;y++);if(x<=y) cout<<"Vladik";else cout<<"Valera";return 0;}


原创粉丝点击