正解
2024-06-08 11:35:23
发布于:江苏
21阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
const int qmaxzie=1000000;
int q[1000010];
int head,tail;
void init(){
head=tail=0;
}
void push(int x){
tail=(tail+1)%qmaxzie;
q[tail]=x;
}
void pop(){
head=(head+1)%qmaxzie;
}
int front(){
return q[(head+1)%qmaxzie];
}
int beck(){
return q[tail];
}
bool empty(){
return head==tail;
}
int size(){
return (tail+qmaxzie-head)%qmaxzie;
}
void clear(){
head=tail;
}
int main(){
init();
int n,k;
cin>>n>>k;
for(int i=0;i<n;i++){
push(i);
}
while(size()!=1){
for(int i=1;i<k;i++){
push(front());
pop();
}
pop();
}
cout<<front();
return 0;
}
这里空空如也
有帮助,赞一个