The 3n + 1 problem 摘要:解题思路:利用for循环逐个遍历输入数之间的数,计算每一个数的周期,找到最大周期即可注意事项:本题有一个坑,输入的第一个数不一定是大于第二个数的,所以需要找到输入两数中的较大值与较小值参考代码:#in…… 题解列表 2024年03月08日 0 点赞 0 评论 98 浏览 评分:0.0
筛法(赌他不卡我数据 摘要:解题思路:注意事项:参考代码#include <bits/stdc++.h>using namespace std;int a[1001000];int fuck(int x) { int ans =…… 题解列表 2021年04月16日 0 点赞 0 评论 150 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:为了采用规范化编程,建议把那个3n+1猜想写进一个函数,返回值是每个传入的数的循环长度。这个题思路也很简单,就是输入对于每次输入的i,j,先输出i,j,然后判断一下i和j的大小,始终让i保存…… 题解列表 2018年01月29日 0 点赞 0 评论 689 浏览 评分: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 评论 111 浏览 评分:0.0
思路清晰的解答 摘要:解题思路:按照从大到小或者从小到大的顺序遍历从m到n的所有值(m和n是输入的)。设定temp记录不同值对应len。设定max记录m和n之间(包括i和j)的整数的最大循环长度,每次得到len后与max比…… 题解列表 2021年03月07日 0 点赞 0 评论 150 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<algorithm>#include<math.h>using namespace…… 题解列表 2018年03月18日 0 点赞 0 评论 529 浏览 评分: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 评论 301 浏览 评分:0.0
The 3n+1 problem 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;long long len(long long n)…… 题解列表 2022年02月04日 0 点赞 0 评论 91 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:题目的意思是 找出从i到j中哪一个数的循环次数最多 并输出它的次数 注意点:(1)将i和j排序 (2)排序后输出的仍要是i j,即顺序不能变。 ```cpp #include using na…… 题解列表 2020年04月06日 0 点赞 0 评论 314 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:数字本身也正在运行次数类,所以最后的max要加1每次循环结束记得要k归0,最大值也要归零#include<iostream>using namespace std;int main() { long …… 题解列表 2018年08月02日 0 点赞 0 评论 396 浏览 评分:0.0