标签:
Description
Input
Output
Sample Input
Sample Output
题目大意就是一个队列报数,第一次12报数,报到2的出列;第二次123报数,报到3的出列;如此循环往复,直到队列人数不超过3.
这里采用两个队列交替使用,对于12报数的情况,只有报到1的才会入另一个队。
对于123的,自然是报到12的入另一个队。
代码:
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <set> #include <stack> #include <map> #include <queue> #include <string> #include <algorithm> #define LL long long using namespace std; int n; void work() { queue<int> q[2]; bool now = 0; int num; for (int i = 1; i <= n; ++i) q[now].push(i); for (;;) { if (q[now].size() <= 3) break; num = 0; now = !now; while (!q[!now].empty()) { num = num%2+1; if (num != 2) q[now].push(q[!now].front()); q[!now].pop(); } if (q[now].size() <= 3) break; num = 0; now = !now; while (!q[!now].empty()) { num = num%3+1; if (num != 3) q[now].push(q[!now].front()); q[!now].pop(); } } bool flag = false; while (!q[now].empty()) { if (flag) printf(" "); printf("%d", q[now].front()); q[now].pop(); flag = true; } printf("\n"); } int main() { //freopen("test.in", "r", stdin); int T; scanf("%d", &T); for (int times = 0; times < T; ++times) { scanf("%d", &n); work(); } return 0; }
标签:
原文地址:http://www.cnblogs.com/andyqsmart/p/4665468.html