首页 > 编程语言 > 详细

《《算法竞赛从入门到进阶》第三章 STL和基本数据结构

时间:2019-11-12 22:24:02      阅读:77      评论:0      收藏:0      [点我收藏+]

A - 圆桌问题: HDU - 4841

#include<iostream>
#include<vector>
#include<stdio.h>
#include<string>
using namespace std;
int main()
{
    vector<int> table;
    int n,m;
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        table.clear();
        for(int i=0;i<2*n;++i)
        {
            table.push_back(i);
        }
        int pos = 0;
        for(int i=0;i<n;++i)
        {
            pos = (pos+m-1)%table.size();
            table.erase(table.begin()+pos);
        }
        int j=0;
        for(int i=0;i<2*n;++i)
        {
            if(!(i%50)&&i)cout<<endl;
            if(j<table.size()&&i==table[j])
            {
                ++j;
                cout<<"G";
            }
            else
            {
                cout<<"B";
            }
        }
        cout<<endl<<endl;
    }
    return 0;
 } 

 

《《算法竞赛从入门到进阶》第三章 STL和基本数据结构

原文:https://www.cnblogs.com/chrysanthemum/p/11844680.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!