比赛 |
2017noip |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
玩具谜题 |
最终得分 |
100 |
用户昵称 |
KK爱搞机 |
运行时间 |
0.679 s |
代码语言 |
C++ |
内存使用 |
2.09 MiB |
提交时间 |
2017-09-20 19:26:27 |
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
int n,m,x,y,tot;
struct toy{
bool d;
string na;
}toys[233333];
int main(){
freopen("toya.in","r",stdin);
freopen("toya.out","w",stdout);
cin>>n>>m;
for(int i=1;i<=n;i++)cin>>toys[i].d>>toys[i].na;
tot=1;
for(int i=1;i<=m;i++){
cin>>x>>y;
if(x xor toys[tot].d){//异右
tot+=y;
if(tot>n)tot%=n;
}else{//同左
tot-=y;
if(tot<1)tot+=n;
}
}
cout<<toys[tot].na;
return 0;
}