1160: 出圈(c++) 摘要:```cpp #include using namespace std; int main() { int n,m; while(cin>>n>>m) { …… 题解列表 2022年11月05日 0 点赞 0 评论 142 浏览 评分:9.9
【出圈】-题解(C++代码) 摘要:# 这题直接用数组模拟循环 ```cpp #include #include #include using namespace std; int main() { i…… 题解列表 2019年10月07日 0 点赞 1 评论 306 浏览 评分:9.9
编写题解 1160: 出圈 摘要:解题思路: 寻找规律注意事项: 话不多说,代码简单易懂参考代码:#include<iostream>using namespace s…… 题解列表 2021年10月24日 0 点赞 0 评论 284 浏览 评分:9.9
【出圈】-题解(C++代码) 模拟,通俗易懂 摘要:- 用people[i]标记是否~~出轨~~,呸,**出圈** (1表示还在,0表示出圈) - i标记喊话的人儿,cnt表示喊出的数字,num代表总的人数,当num为1时就终止了 - 进行循环 …… 题解列表 2019年12月09日 0 点赞 0 评论 795 浏览 评分:9.9
【出圈】-另类简单解法 摘要:解题思路: 在数组中将所有人从1到n编号,报数到的第b个人出圈(对其赋大值然后sort),始终在n+1-b个人中报数参考代码: 1 #include<iostream>…… 题解列表 2021年12月17日 0 点赞 0 评论 156 浏览 评分:9.9
Kanna-【出圈】-(38行代码解决问题) 摘要:使用C++的list容器,比较方便书写(就不必取写链表了) **代码中使用到的函数有:** clear():清空容器中的元素 push.back(int i):存储元素在容器中 fro…… 题解列表 2020年01月23日 0 点赞 0 评论 685 浏览 评分:9.9
还差50分的话,就要while多组输入。29行代码搞定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; while(cin>>n>>m…… 题解列表 2022年08月07日 0 点赞 0 评论 191 浏览 评分:9.9
[出圈]-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n=0, m=0; while (scanf("%d%d",&…… 题解列表 2020年05月18日 0 点赞 0 评论 457 浏览 评分:9.9
1160: 出圈(好东西哈) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring> //memset()必备using namespace std;in…… 题解列表 2024年03月12日 0 点赞 0 评论 75 浏览 评分:9.9
【出圈】-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int n, m; while (cin >> n >> m) …… 题解列表 2019年10月16日 0 点赞 0 评论 672 浏览 评分:9.9