四方平和 四数问题(暴力+HashMap中转一分为二+二分查找,一步步进行优化) 摘要:### 注意事项 - 可能有多个答案,所有的可能表示法按 a,b,c,d 为联合主键升序排列,最后输出第一个表示法(也就是输出字典序最小的那个) - 输出为4个非负整数,按从小到大排序,中间用空格…… 题解列表 2022年03月20日 0 点赞 0 评论 324 浏览 评分:9.9
暴力枚举!!! 摘要:```cpp #include using namespace std; int n; int main(){ cin >> n; for(int i = 0;…… 题解列表 2022年03月18日 0 点赞 0 评论 144 浏览 评分: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
python-四平方和 摘要:解题思路:注意事项:参考代码:from math import sqrt def f(n): for i in range(int(sqrt(n))+1): …… 题解列表 2022年02月03日 0 点赞 0 评论 345 浏览 评分:0.0
蓝桥杯2016年第七届真题-四平方和(一种正确和两种错误) 摘要:解题思路:3循环和1对比注意事项:4循环过不去,3个可以参考代码:正确#include <iostream>#include<cstdio>#include<algorithm>#include<cm…… 题解列表 2021年04月04日 0 点赞 0 评论 596 浏览 评分:9.9
蓝桥杯2016年第七届真题-四平方和-题解(C++代码)简单暴力稍稍优化即可AC 摘要:解题思路:注意事项:参考代码:/* 时间复杂度:O((n^(3/2))/24) ,在n<=5e6的数据是可以过的 */ #include <iostream> #include <cmath…… 题解列表 2020年11月24日 0 点赞 0 评论 531 浏览 评分:8.0
蓝桥杯2016年第七届真题-四平方和-题解(C语言代码) 摘要:#include <stdio.h> #include <math.h> long long n; int main() { scanf("%lld",&n); long long q…… 题解列表 2020年11月01日 0 点赞 3 评论 821 浏览 评分:5.4
蓝桥杯2016年第七届真题-四平方和-题解(Java代码) 摘要:解题思路:暴力搜索法。一般做搜索都有许多重复无用的操作,因此需要进行判断去除多余的暴力操作。例如在本题中 ,a b c d 中任意一个的平方已经大于n那么将终止本次循环。注意事项:参考代码: imp…… 题解列表 2020年10月13日 0 点赞 1 评论 295 浏览 评分:9.9
蓝桥杯2016年第七届真题-四平方和-题解(C++代码)暴力及正解的两种解法 摘要:## 这题有两种解法:1、暴力(但是容易被卡掉);2、二分 ### 解题思路:1、暴力就是枚举a,b,c的值,然后求出d值,判断是否合法,合法就输出;2、预处理出两个数的平方和,然后再枚…… 题解列表 2020年10月11日 0 点赞 0 评论 517 浏览 评分: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