题目 1160: 出圈 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define MAX 100000int main() { int m,n; while(scanf("%d%d",&n,…… 题解列表 2022年03月12日 0 点赞 0 评论 117 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:按照题目踢出方法,先把没有踢出的人全部置1,若有人踢出把他置0;注意事项:最后一个人i的值必须等于-1,i最后还会+1,再一次循环就从牌p[0]开始;参考代码:#include <stdio…… 题解列表 2018年11月16日 1 点赞 0 评论 594 浏览 评分:0.0
【出圈】 (C++代码) 摘要:解题思路:f[1]=0;f[i]=(f[i-1]+m)%i; (i>1)注意事项:参考代码:#include<iostream>#include<algorithm>using namespace s…… 题解列表 2018年08月11日 0 点赞 1 评论 564 浏览 评分:0.0
【出圈】 (C语言代码)用单项循环链表 摘要:解题思路:圈刚好是一个单项循环链表,每次出圈就是free掉一个链表结点注意事项:链表操作要细心参考代码:#include <stdio.h>#include <stdlib.h>typedef str…… 题解列表 2017年08月03日 0 点赞 0 评论 1009 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:参考代码://此处可以不用结构体,可以用 二维数组,本质上一样。 typedef struct people { int num; int chuquan; }PEOPLE…… 题解列表 2017年12月05日 0 点赞 0 评论 814 浏览 评分:0.0
连续输入用重复执行解决 摘要:解题思路:模板给的开头和结尾还是很有用的遇到连续输入还好是还是要尽量用一下while true:try:except:break挺好用注意事项:参考代码:while True: try: …… 题解列表 2023年03月09日 0 点赞 0 评论 64 浏览 评分:0.0
Mark11:数组模拟链表 摘要:注意事项: 这题和前面的一道报3退圈的,很像。这里采用的数组模拟方法,是之前一位dalao的。参考代码:#include<stdio.h> #include<s…… 题解列表 2018年10月04日 1 点赞 0 评论 900 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,count,i,j,k; int num[100]={0}; while(sc…… 题解列表 2017年09月01日 0 点赞 0 评论 693 浏览 评分:0.0
【出圈】-题解(C语言代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2019年10月27日 0 点赞 0 评论 458 浏览 评分:0.0
编写题解 1160: 出圈 摘要:while True: try: n,m =map(int,input().split()) lis = list(range(1,n+1)) …… 题解列表 2021年12月22日 0 点赞 0 评论 146 浏览 评分:0.0