标签:
Description
Input
Output
Sample Input
Sample Output
#include <iostream> #include <queue> using namespace std; queue<int> s; void cmp(int k) { int i=1; while(s.front()!=0) { if(i%k!=0) //把留下来的放队尾 s.push(s.front()); s.pop();//去掉队首 i++; } s.pop();//把队首的0去掉, s.push(0); //在队尾加上0 } int main () { int t; cin>>t; while(t--) { int n,i;cin>>n; for(i=1;i<=n;i++) s.push(i); s.push(0); //每次在最后加上个0 i=1; while(s.size()>4) //因为加上了0,所以长度小于等于4就退出 { if(i%2==0)cmp(3); //选择数三下踢一个人还是数两下踢一个人 else cmp(2); i++; } i=0; while(!s.empty()) //查看队列中是不是为空 { if(s.front()>0) //因为队尾还有个0,这个是不用输出的但是为了清空队列,还是要删除它 { if(i) cout<<" "; i=1; cout<<s.front(); } s.pop(); } cout<<"\n"; } return 0; }
标签:
原文地址:http://www.cnblogs.com/www-cnxcy-com/p/4664820.html