比赛 |
2017noip |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
玩具谜题 |
最终得分 |
100 |
用户昵称 |
Regnig Etalsnart |
运行时间 |
0.124 s |
代码语言 |
C++ |
内存使用 |
0.64 MiB |
提交时间 |
2017-09-20 19:15:47 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#define syy myson
using namespace std;
const int maxn=100001;
char name[maxn][20];
int n,m,x,y,now=1,to[maxn],i;
int Main()
{
freopen("toya.in","r",stdin);freopen("toya.out","w",stdout);
scanf("%d%d",&n,&m);
for(i=1;i<=n;i++)scanf("%d%s",&to[i],name[i]);
for(i=1;i<=m;i++)
{
scanf("%d%d",&x,&y);
if(to[now]!=x)now+=y;
else now-=y;
if(now<=0)now+=n;
if(now>n)now-=n;
}
printf("%s\n",name[now]);
return 0;
}
int main(){;}
int syy=Main();