A B Codeforces Round #285 (Div. 2)

来源:互联网 发布:plc编码器编程 编辑:程序博客网 时间:2024/05/17 22:47
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.

Sample test(s)
input
500 1000 20 30
output
Vasya
input
1000 1000 1 1
output
Tie
input
1500 1000 176 177
output
Misha



#include<iostream>#include<algorithm>#include<stdio.h>#include<string.h>#include<stdlib.h>using namespace std;int main(){    __int64 a,b,c,d;    while(scanf("%I64d%I64d%I64d%I64d",&a,&b,&c,&d)!=EOF)    {        __int64 x,y;        x = max((3*a/10),a-(a/250)*c);        y = max((3*b/10),b-(b/250)*d);        if(x>y)        {            printf("Misha\n");        }        else if(x<y)        {            printf("Vasya\n");        }        else        {            printf("Tie\n");        }    }    return 0;}






B. Misha and Changing Handles
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Misha hacked the Codeforces site. Then he decided to let all the users change their handles. A user can now change his handle any number of times. But each new handle must not be equal to any handle that is already used or that was used at some point.

Misha has a list of handle change requests. After completing the requests he wants to understand the relation between the original and the new handles of the users. Help him to do that.

Input

The first line contains integer q (1 ≤ q ≤ 1000), the number of handle change requests.

Next q lines contain the descriptions of the requests, one per line.

Each query consists of two non-empty strings old and new, separated by a space. The strings consist of lowercase and uppercase Latin letters and digits. Strings old and new are distinct. The lengths of the strings do not exceed 20.

The requests are given chronologically. In other words, by the moment of a query there is a single person with handle old, and handlenew is not used and has not been used by anyone.

Output

In the first line output the integer n — the number of users that changed their handles at least once.

In the next n lines print the mapping between the old and the new handles of the users. Each of them must contain two strings, old andnew, separated by a space, meaning that before the user had handle old, and after all the requests are completed, his handle is new. You may output lines in any order.

Each user who changes the handle must occur exactly once in this description.

Sample test(s)
input
5Misha ILoveCodeforcesVasya PetrovPetrov VasyaPetrov123ILoveCodeforces MikeMirzayanovPetya Ivanov
output
3Petya IvanovMisha MikeMirzayanovVasya VasyaPetrov123



#include<iostream>#include<algorithm>#include<stdio.h>#include<string.h>#include<stdlib.h>#include<map>using namespace std;char a[10100][21];char b[10010][21];struct node{    char x[21];    char y[21];}p[10010];int cmp1(const void *a,const void *b){    struct node *aa,*bb;    aa = (struct node*)a;    bb = (struct node*)b;    return strcmp(aa->y,bb->y);}int main(){    int n;    while(scanf("%d",&n)!=EOF)    {        map<string,int>q;        char str[21];        for(int i=1;i<=n;i++)        {            scanf("%s%s",b[i],a[i]);            q[b[i]] = i;        }        for(int i=1;i<=n;i++)        {            if(q[b[i]]!=0)            {                while(q[a[q[b[i]]]]!=0)                {                    strcpy(str,a[q[b[i]]]);                    q[b[i]] = q[a[q[b[i]]]];                    q[str] = 0;                }            }        }        int k = 0;        for(int i=1;i<=n;i++)        {            if(q[b[i]]!=0)            {                strcpy(p[k].x,b[i]);                strcpy(p[k].y,a[q[b[i]]]);                k++;            }        }        printf("%d\n",k);       qsort(p,k,sizeof(p[0]),cmp1);       for(int i=0;i<k;i++)       {           printf("%s %s\n",p[i].x,p[i].y);       }    }    return 0;}


0 0
原创粉丝点击