当前位置:首页 » 《随便一记》 » 正文

201712-2 游戏_辰的博客

25 人参与  2021年11月07日 14:03  分类 : 《随便一记》  评论

点击全文阅读


201712-2 游戏

  • C++
  • 总结


本题链接: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
数组模拟队列


点击全文阅读


本文链接:http://zhangshiyu.com/post/30606.html

队列  本题  数组  
<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1