NOIP2016 toy
Posted InWILL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NOIP2016 toy相关的知识,希望对你有一定的参考价值。
又是一年noip时
1 #include<iostream> 2 using namespace std; 3 4 int n,m,p,q,t=0; 5 int d[100005]; 6 string s[100005]; 7 8 int main() 9 { 10 cin>>n>>m; 11 for(int i=0;i<n;i++) 12 { 13 cin>>d[i]>>s[i]; 14 } 15 for(int i=0;i<m;i++) 16 { 17 cin>>p>>q; 18 if(d[t]==0&&p==0) 19 t=(t-q+n)%n; 20 else if(d[t]==1&&p==0) 21 t=(t+q)%n; 22 else if(d[t]==0&&p==1) 23 t=(t+q)%n; 24 else if(d[t]==1&&p==1) 25 t=(t-q+n)%n; 26 } 27 cout<<s[t]<<endl; 28 return 0; 29 }
以上是关于NOIP2016 toy的主要内容,如果未能解决你的问题,请参考以下文章