[uoj#260]玩具谜题 传送门 http://uoj.ac/problem/260 分析 模拟. int n,m; int dir[N]; char nam[N][L]; int a[M],s[M]; int now; int Go(int now,int dir1,int len) { int dirFin=(dir[now]^dir1); if (!dirFin) now-=len; else now+=len; now%=n; if (now<=0) now+=n; return no…