质因数分解 不用引用math函数,极简 摘要:解题思路:大体思路相同,都是用平方根计算注意事项:参考代码:#include<stdio.h>int main(){ int n,max; scanf("%d",&n); for(i…… 题解列表 2024年11月18日 0 点赞 0 评论 83 浏览 评分:9.9
应该是最简洁了的-最强小队 摘要:解题思路:题意理解错了,以为是从一段区间中选取几个结果是一整段的,几行搞定注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int …… 题解列表 2024年11月18日 0 点赞 0 评论 84 浏览 评分:0.0
1796: 蛇形填数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int n, a[150][150];void twins(i…… 题解列表 2024年11月18日 0 点赞 0 评论 70 浏览 评分:9.9
不懂评论简化 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) for i in range(5): a[i]//=3 up=4 if(i==0)…… 题解列表 2024年11月18日 0 点赞 0 评论 28 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2024年11月18日 0 点赞 0 评论 39 浏览 评分:0.0
信息学奥赛一本通T1616-A 的 B 次方 摘要:参考代码:#include <stdio.h> // 快速幂实现 long long int mod_exp(long long int a, long long int b, long long…… 题解列表 2024年11月18日 0 点赞 0 评论 24 浏览 评分:0.0
蓝桥杯2024年第十五届省赛真题-遗迹 摘要:解题思路:ret放在最外层循环就AC了,但觉得后台数据应该错了,ret 觉得应该是放在 auto& k1 循环内的前后结点相同的状态应该也有扩展状态的必要,而不是直接继承注意事项:参考代码:#incl…… 题解列表 2024年11月18日 0 点赞 0 评论 58 浏览 评分:0.0
头铁撞墙-狡兔 k 窟 摘要:解题思路:惯性思维硬刚等同于头铁撞墙把连通的点集视为一个结点,结点相连,然后广搜路径注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#defi…… 题解列表 2024年11月18日 0 点赞 0 评论 42 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:注意使用 &&参考代码:#include<stdio.h>#include<math.h>int main (){ double x; scanf ("%lf",&x); if (…… 题解列表 2024年11月18日 0 点赞 0 评论 96 浏览 评分:0.0
信息学奥赛一本通T1252-走迷宫,dfs做法! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量 int a, b, h[50][50]; // a和b…… 题解列表 2024年11月18日 0 点赞 0 评论 53 浏览 评分:0.0