Counting-out Rhyme【模拟】
Counting-out Rhyme
n children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to n. In the beginning, the first child is considered the leader. The game is played in k steps. In the i-th step the leader counts out aipeople in clockwise order, starting from the next person. The last one to be pointed at by the leader is eliminated, and the next player after him becomes the new leader.
For example, if there are children with numbers [8, 10, 13, 14, 16] currently in the circle, the leader is child 13 and ai = 12, then counting-out rhyme ends on child 16, who is eliminated. Child 8 becomes the leader.
You have to write a program which prints the number of the child to be eliminated on every step.
Input
The first line contains two integer numbers n and k (2 ≤ n ≤ 100, 1 ≤ k ≤ n - 1).
The next line contains k integer numbers a1, a2, ..., ak (1 ≤ ai ≤ 109).
Output
Print k numbers, the i-th one corresponds to the number of child to be eliminated at the i-th step.
Examples
Input
7 5
10 4 11 4 1
Output
4 2 5 6 1
Input
3 2
2 5
Output
3 2
Note
Let's consider first example:
- In the first step child 4 is eliminated, child 5 becomes the leader.
- In the second step child 2 is eliminated, child 3 becomes the leader.
- In the third step child 5 is eliminated, child 6 becomes the leader.
- In the fourth step child 6 is eliminated, child 7 becomes the leader.
- In the final step child 1 is eliminated, child 3 becomes the leader.
题目大意:约瑟夫环的衍生题,只需取一下模数即可
AC代码
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <map>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <set>
#include <utility>
using namespace std;
typedef long long ll;
#define inf 0x3f3f3f3f
#define rep(i,l,r) for(int i=l;i<=r;i++)
#define lep(i,l,r) for(int i=l;i>=r;i--)
#define ms(arr) memset(arr,0,sizeof(arr))
//priority_queue<int,vector<int> ,greater<int> >q;
const int maxn = (int)1e5 + 5;
const ll mod = 1e9+7;
int n,k;
int a[210];
int v[210];
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
ios::sync_with_stdio(0),cin.tie(0);
cin>>n>>k;
rep(i,1,n) {
a[i]=i;
}
rep(i,1,k) {
cin>>v[i];
}
int len=n;
int t=1;
rep(i,1,k) {
t=(t+v[i])%len;
if(t==0)
t=len;
cout<<a[t]<<" ";
rep(j,t,len-1) {
a[j]=a[j+1];
}
len--;
}
cout<<endl;
return 0;
}
推荐阅读
-
java模拟ATM功能(控制台连接Mysql数据库)
-
【CSP-S膜你考】不怕噩梦 (模拟)
-
AngularJS之依赖注入模拟实现
-
Droid4X海马玩模拟器怎么安装本地apk? 海马玩模拟器安装apk的多种方法介绍
-
PHP基于curl实现模拟微信浏览器打开微信链接的方法示例
-
virtuanes模拟器怎么使用?virtuanes模拟器图文教程(附软件下载)
-
BlueStacks教程 Android模拟器安装图文教程
-
IoTClient开发4 - ModBusTcp协议服务端模拟
-
android开发教程之用命令启动android模拟器并设置其内存大小
-
叶子猪手游模拟器下载游戏保存在哪 下载游戏保存路径介绍