哈希法 # 2270: 蓝桥杯2016年第七届真题-四平方和(C++) 摘要:这道题显而易见的暴力思路就是三重for循环枚举所有情况 这里有一个全新的思路 => 哈希法 对于四个数字 a b c d (升序排序) 我们定义数组 C[S],D[S], 表示 能凑…… 题解列表 2024年11月22日 0 点赞 0 评论 62 浏览 评分:0.0
python-四平方和 摘要:解题思路:注意事项:参考代码:from math import sqrt def f(n): for i in range(int(sqrt(n))+1): …… 题解列表 2022年02月03日 0 点赞 0 评论 345 浏览 评分:0.0
暴力加适度优化 摘要:解题思路: d和c从大数往小数循环注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { int …… 题解列表 2023年11月21日 0 点赞 0 评论 56 浏览 评分:0.0
蓝桥杯2016年第七届真题-四平方和-题解(C++代码) 摘要:### 三重循环暴力解决 ```c #include using namespace std; int main() { int n; scanf("%d",&n); int a…… 题解列表 2020年10月03日 0 点赞 0 评论 384 浏览 评分:0.0
暴力枚举!!! 摘要:```cpp #include using namespace std; int n; int main(){ cin >> n; for(int i = 0;…… 题解列表 2022年03月18日 0 点赞 0 评论 144 浏览 评分:0.0
不是暴力枚举的方法,哪位大哥帮忙优化一下 时间过不去 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int sum = 0,n,ans = 0;int a[1000000];int f…… 题解列表 2023年02月16日 0 点赞 0 评论 93 浏览 评分:0.0
蓝桥杯2016年第七届真题-四平方和-题解(Java代码) 摘要:```java public static void main(String[] args) { Scanner scanner=new Scanner(System.in); long…… 题解列表 2020年04月10日 0 点赞 0 评论 669 浏览 评分:0.0
蓝桥杯2016年第七届真题-四平方和(Java) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年01月22日 0 点赞 0 评论 67 浏览 评分:0.0
蓝桥杯2016年第七届真题-四平方和-题解(C++代码)暴力及正解的两种解法 摘要:## 这题有两种解法:1、暴力(但是容易被卡掉);2、二分 ### 解题思路:1、暴力就是枚举a,b,c的值,然后求出d值,判断是否合法,合法就输出;2、预处理出两个数的平方和,然后再枚…… 题解列表 2020年10月11日 0 点赞 0 评论 517 浏览 评分:0.0
枚举思想解决 摘要:解题思路:暴力枚举注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,j,m,l; scanf("%d",&n); in…… 题解列表 2022年02月22日 0 点赞 2 评论 259 浏览 评分:4.7