http://www.bnuoj.com/bnuoj/problem_show.php?pid=4207

【题意】:中文题,略

【题解】:模拟

【code】:

 #include <iostream>
#include <stdio.h>
#include <algorithm> using namespace std; struct Nod
{
int t,sh;
}node[][]; void init()
{
//XsugarX
node[][].t = ;
node[][].sh = ; node[][].t = ;
node[][].sh = ; node[][].t = ;
node[][].sh = ; //temperlsyer
node[][].t = ;
node[][].sh = ; node[][].t = ;
node[][].sh = ; node[][].t = ;
node[][].sh = ; node[][].t = ;
node[][].sh = ; node[][].t = ;
node[][].sh = ;
} int main()
{
int t;
init();
scanf("%d",&t);
while(t--)
{
int time,p1,p2;
scanf("%d%d%d",&time,&p1,&p2);
int i,atk[]={};
int next0=node[][].t,next1=node[][].t;
int add0=,add1=,cnt0=,cnt1=;
for(i=;i<=time;i++)
{
int flag0=,flag1=;
if(next0==i)
{
p2-=node[][cnt0].sh;
cnt0=(cnt0+)%;
flag0=; }
if(next1==i)
{
p1-=node[][cnt1].sh;
cnt1=(cnt1+)%;
flag1=;
}
if(flag0)
{
next1+=;
next0+=node[][cnt0].t;
}
if(flag1)
{
next1+=node[][cnt1].t;
next0+=;
}
if(flag0||flag1)
{ if(p1<=||p2<=)
{
break;
}
}
}
if((p1<=&&p2<=)||(p1==p2))
{
puts("DRAW");
}
else if(p1>p2)
{
printf("XsugarX %d\n",p1);
}
else if(p1<p2)
{
printf("temperlsyer %d\n",p2);
}
}
return ;
}
05-06 18:15