码迷,mamicode.com
首页 > 其他好文 > 详细

hdu4841_圆桌问题

时间:2020-04-25 13:02:35      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:clear   while   return   位置   space   ace   its   clu   http   

技术图片

 1 //#include<bits/stdc++.h>
 2 #include<iostream> 
 3 #include<vector>
 4 using namespace std;
 5 int main(){
 6     vector<int>table; //模拟一个圆桌
 7     int n,m;
 8     while(cin>>n>>m){
 9         table.clear();   //有多组样例,切记清空
10         for(int i=0;i<2*n;i++)
11         table.push_back(i);  //初始化一个圆桌
12         int pos=0;           //设置当前位置
13         for(int i=0;i<n;i++){    //删除n个人
14             pos=(pos+m-1)%table.size();     //圆桌!循环取余
15             table.erase(table.begin()+pos); //删除坏人
16         }
17         int j=0;
18         for(int i=0;i<2*n;i++){   //打印提前要安排的座位
19             if(!(i%50)&&i)    
20             cout<<endl;            //50个字母一行
21             if(j<table.size()&&i==table[j]){   //table里留下的都为好人,匹配座位
22                 j++;
23                 cout<<"G";
24             }else
25                 cout<<"B";
26         }
27         cout<<endl<<endl;         //观察题目相邻数据间有一空行
28     }
29     return 0;
30 } 

注:约瑟夫环问题,循环取余。使用vector解决。

hdu4841_圆桌问题

标签:clear   while   return   位置   space   ace   its   clu   http   

原文地址:https://www.cnblogs.com/bxynlbyx/p/12772146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!