The 3n + 1 problem -题解(C语言代码) 摘要:## 解题思路: 根据题意可以知道输入两个数,输出这两个数以及这两个数之间有多少个数满足如下条件,偶数的时候除以2,为奇数的时候乘三加一直到这个数为一停止,最后输出中间有多少数。 ## 注意事项:…… 题解列表 2020年07月10日 0 点赞 0 评论 294 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:是数据水了 还是我理解错了QAQ 以为会有$1-10^6$这种数据 思路是求出$1-10^6$所有数的循环长度 再用线段树查询 开1e6会爆空间 淦 果然是我想麻烦了 ``` #incl…… 题解列表 2020年10月15日 0 点赞 0 评论 196 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:#include "stdio.h"int count = 0;int f(int n){ if (n == 1) { int k = count + 1; count = 0; return …… 题解列表 2018年10月31日 0 点赞 0 评论 247 浏览 评分:0.0
我这个应该是挺好理解的吧 摘要:```cpp #include using namespace std; int main() { int n,m; while(cin>>n>>m)//n…… 题解列表 2023年01月19日 0 点赞 0 评论 144 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:将每一个区间内的数进行运算,找出其中循环次数最多的那一个注意事项:/*1 41 4 84 14 1 85 15 1 86 16 1 9 7 17 1 17*/先后输入的俩个数需要比大小让小的…… 题解列表 2019年01月19日 0 点赞 0 评论 306 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:从 a 到 b 挨个判断跌落到 1 需要的次数,保存最大的次数。注意 a 大于 b 的情形。#include <bits/stdc++.h> using namespace std; int …… 题解列表 2022年01月01日 0 点赞 0 评论 112 浏览 评分:0.0
The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:def f(x): c=1 while x!=1: if x%2==0: x=x//2 else: …… 题解列表 2022年04月24日 0 点赞 0 评论 141 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:#思路 通过输入获得n1,n2;比较n1,n2的大小;使用for循环获得两数中循环次数的最大值,并输出。再将前面的放进循环中。 #心得 1.可以使用cin作为while的判断条件。例如:whil…… 题解列表 2020年02月02日 0 点赞 0 评论 190 浏览 评分:0.0
求哪里错了?? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,freq,num,max=0,temp; int i,j; while(scanf("%d%d"…… 题解列表 2018年11月05日 0 点赞 0 评论 462 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,j=0,n[100],m[100],count=0,sum[100]={0},k=0,a=0…… 题解列表 2017年10月22日 0 点赞 0 评论 660 浏览 评分:0.0