[出圈]-题解(Java代码) 摘要: import java.util.Scanner; public class Main { public static void main(String…… 题解列表 2021年01月27日 0 点赞 0 评论 469 浏览 评分:9.9
猴子选大王(报数问题) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n,m; while(scanf("%d %d",&n,&m)!=EOF) { int s=0; …… 题解列表 2024年03月18日 0 点赞 0 评论 145 浏览 评分: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 评论 198 浏览 评分:9.9
出圈(约瑟夫环)问题---用C语言解决 摘要:```c #include int main(void) { int n,m; while(scanf("%d%d", &n,&m)!=EOF) { int row[n]; …… 题解列表 2022年11月25日 0 点赞 0 评论 501 浏览 评分:9.9
C语言代码,数组循环出圈 摘要:解题思路: 定义一个长度为n的数组,表示n个人,初始值为1,表示未出圈,0表示已出圈。利用while循环,从头开始报数,每一次先判断这个人有没有出圈。如果没有出圈,就报数,并判断报的…… 题解列表 2021年07月27日 0 点赞 0 评论 486 浏览 评分:9.9
一个初学者的简单思路--出圈 摘要:解题思路:我们设置一个计数的count,如果说一共有n个人,把一个数组的前n项均设为1,那么count在遍历的时候可以把每一项值相加,如果count=m,则说明此位置的人出圈,这时我们把count再设…… 题解列表 2022年12月23日 0 点赞 1 评论 97 浏览 评分:9.9
[出圈]☞每日一题 摘要:#include int main() { int n,k,m,j,r; int a[100]; while(scanf("%d%d",&n,&m)!=EOF) …… 题解列表 2022年01月18日 0 点赞 0 评论 235 浏览 评分:9.9
1160: 出圈 (vector , 公式法) 摘要:解题思路:Vector注意事项:删除元素的位置在末尾的时候,需要注意初始化为0参考代码:#include#include using namespace std; int main() { …… 题解列表 2024年08月31日 0 点赞 0 评论 73 浏览 评分:9.9
出圈:重点是怎么在反复遍历一个圈时确定下标问题 摘要:解题思路:本题可以将所有的人从1到m设置好序号,然后放到列表里面,序号存在表示该人尚未出圈,每次遍历时index更新为(index+(m-1))%len(c),保证下标在超过范围时能够正确判断,每一次…… 题解列表 2023年11月08日 0 点赞 0 评论 120 浏览 评分:9.9
【出圈】-题解(C++代码) 模拟,通俗易懂 摘要:- 用people[i]标记是否~~出轨~~,呸,**出圈** (1表示还在,0表示出圈) - i标记喊话的人儿,cnt表示喊出的数字,num代表总的人数,当num为1时就终止了 - 进行循环 …… 题解列表 2019年12月09日 0 点赞 0 评论 812 浏览 评分:9.9