ZOJ 3958 Cooking Competition【】

来源:互联网 发布:决胜60秒源码 编辑:程序博客网 时间:2024/06/05 03:54


Cooking Competition

Time Limit: 1 Second      Memory Limit: 65536 KB

"Miss Kobayashi's Dragon Maid" is a Japanese manga series written and illustrated by Coolkyoushinja. An anime television series produced by Kyoto Animation aired in Japan between January and April 2017.

In episode 8, two main characters, Kobayashi and Tohru, challenged each other to a cook-off to decide who would make a lunchbox for Kanna's field trip. In order to decide who is the winner, they asked n people to taste their food, and changed their scores according to the feedback given by those people.

There are only four types of feedback. The types of feedback and the changes of score are given in the following table.

TypeFeedbackScore Change
(Kobayashi)Score Change
(Tohru)1Kobayashi cooks better+102Tohru cooks better0+13Both of them are good at cooking+1+14Both of them are bad at cooking-1-1

Given the types of the feedback of these n people, can you find out the winner of the cooking competition (given that the initial score of Kobayashi and Tohru are both 0)?

Input

There are multiple test cases. The first line of input contains an integer T (1 ≤ T ≤ 100), indicating the number of test cases. For each test case:

The first line contains an integer n (1 ≤ n ≤ 20), its meaning is shown above.

The next line contains n integers a1a2, ... , an (1 ≤ ai ≤ 4), indicating the types of the feedback given by these n people.

Output

For each test case output one line. If Kobayashi gets a higher score, output "Kobayashi" (without the quotes). If Tohru gets a higher score, output "Tohru" (without the quotes). If Kobayashi's score is equal to that of Tohru's, output "Draw" (without the quotes).

Sample Input

231 2 123 4

Sample Output

KobayashiDraw

Hint

For the first test case, Kobayashi gets 1 + 0 + 1 = 2 points, while Tohru gets 0 + 1 + 0 = 1 point. So the winner is Kobayashi.

For the second test case, Kobayashi gets 1 - 1 = 0 point, while Tohru gets 1 - 1 = 0 point. So it's a draw.





#include <iostream>#include<cstdio>#include<cmath>#include<string>#include<cstring>#include<queue>#include<stack>using namespace std;int i,j,k,b,n,m;int main(){    int T;    int sum1,sum2;    scanf("%d",&T);    while(T--){    sum1=sum2=0;    scanf("%d",&n);    for(int i=0;i<n;i++)    {        scanf("%d",&k);        if(k==1)sum1++;        if(k==2)sum2++;    }    if(sum1==sum2)printf("Draw\n");    else if(sum1>sum2)printf("Kobayashi\n");    else printf("Tohru\n");    }    return 0;}


0 0
原创粉丝点击