题解 1160: 出圈

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1160: 出圈(c++)

摘要:```cpp #include using namespace std; int main() { int n,m; while(cin>>n>>m) { ……

【出圈】-题解(C++代码)

摘要:# 这题直接用数组模拟循环 ```cpp #include #include #include using namespace std; int main() { i……

编写题解 1160: 出圈

摘要:解题思路:                  寻找规律注意事项:                 话不多说,代码简单易懂参考代码:#include<iostream>using namespace s……

【出圈】-题解(C++代码) 模拟,通俗易懂

摘要:- 用people[i]标记是否~~出轨~~,呸,**出圈** (1表示还在,0表示出圈) - i标记喊话的人儿,cnt表示喊出的数字,num代表总的人数,当num为1时就终止了 - 进行循环 ……

【出圈】-另类简单解法

摘要:解题思路:   在数组中将所有人从1到n编号,报数到的第b个人出圈(对其赋大值然后sort),始终在n+1-b个人中报数参考代码:  1     #include<iostream>……

Kanna-【出圈】-(38行代码解决问题)

摘要:使用C++的list容器,比较方便书写(就不必取写链表了) **代码中使用到的函数有:** clear():清空容器中的元素 push.back(int i):存储元素在容器中 fro……

1160: 出圈(好东西哈)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>                //memset()必备using namespace std;in……