201712-2 游戏

Posted 辰chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了201712-2 游戏相关的知识,希望对你有一定的参考价值。

201712-2 游戏


本题链接201712-2 游戏

本博客给出本题截图

C++

#include <iostream>
#include <algorithm>
#include <queue>

using namespace std;

int main()
{
    int n, k;
    cin >> n >> k;
    queue<int> q;

    for (int i = 1; i <= n; i ++ ) q.push(i);
    int j = 1;
    while (q.size() > 1)
    {
        int t = q.front();
        q.pop();
        if (j % k && j % 10 != k) q.push(t);
        j ++ ;
    }

    cout << q.front() << endl;
    return 0;
}

总结

使用队列可以简化我们的代码量,队列可以直接使用STL中的队列,也可以用数组模拟队列
STL—queue
数组模拟队列

以上是关于201712-2 游戏的主要内容,如果未能解决你的问题,请参考以下文章

201712-2 游戏

CCF 201712-2 游戏 100分

CCF201712-2游戏

CCF CSP 201712-2 游戏

CCF-CSP刷题库11-18

从片段调用 Google Play 游戏服务