CodeForces 501A Contest(水题,感觉BUG)

本文介绍了一个简单的Codeforces竞赛得分比较问题。通过给定的公式计算两位参赛者Misha和Vasya各自解决的问题得分,并根据得分判断谁的分数更高或者是否平局。

A. Contest
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Misha and Vasya participated in a Codeforces contest. Unfortunately, each of them solved only one problem, though successfully submitted it at the first attempt. Misha solved the problem that costs a points and Vasya solved the problem that costs b points. Besides, Misha submitted the problem c minutes after the contest started and Vasya submitted the problem d minutes after the contest started. As you know, on Codeforces the cost of a problem reduces as a round continues. That is, if you submit a problem that costs p points tminutes after the contest started, you get  points.

Misha and Vasya are having an argument trying to find out who got more points. Help them to find out the truth.

Input

The first line contains four integers abcd (250 ≤ a, b ≤ 35000 ≤ c, d ≤ 180).

It is guaranteed that numbers a and b are divisible by 250 (just like on any real Codeforces round).

Output

Output on a single line:

"Misha" (without the quotes), if Misha got more points than Vasya.

"Vasya" (without the quotes), if Vasya got more points than Misha.

"Tie" (without the quotes), if both of them got the same number of points.

Examples
input
500 1000 20 30
output
Vasya
input
1000 1000 1 1
output
Tie
input
1500 1000 176 177
output
Misha

题意:

带入公式试一下。

问题卡在 —> 如图


不知道是不是第四次经历了!!!求解!

AC CODE:

#include<stdio.h>
#include<cstring>
#include<algorithm>
#define AC main()
using namespace std;
const int MYDD = 1103;

double GetPoints(int p, int t) {
	return max(0.3*p, (p - p*t/250.0)*1.0);
}

int AC {
	int a, b, c, d;
	scanf("%d %d %d %d", &a, &b, &c, &d);
	if(GetPoints(a, c) > GetPoints(b, d)) {
		puts("Misha");
	}
	else if(GetPoints(a, c) < GetPoints(b, d)) {
		puts("Vasya");
	}
	else if(GetPoints(a, c) == GetPoints(b, d)) {
		puts("Tie");
	}
	return 0;
}///


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值