2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3+5;typedef long long ll;ll…… 题解列表 2024年06月01日 0 点赞 0 评论 311 浏览 评分:9.9
2886: 图像旋转 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3+5;typedef long long ll;ll…… 题解列表 2024年06月01日 0 点赞 0 评论 186 浏览 评分:9.9
1242: 矩阵转置 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3+5;typedef long long ll;ll…… 题解列表 2024年06月01日 0 点赞 0 评论 226 浏览 评分:0.0
贪心+DP的思路就可以解决问题。。。 摘要:解题思路:按照w+v的值从小到大排列后可以使后面的能够放在下面的可能最大。。。注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const in…… 题解列表 2024年05月31日 0 点赞 0 评论 253 浏览 评分:9.9
1099校门外的树(数组解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m;//马路长度 int n;//组数 cin >> m >>…… 题解列表 2024年05月31日 0 点赞 0 评论 229 浏览 评分:0.0
1098陶陶摘苹果(for循环遍历解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[15];//存苹果高度 int b;//存陶陶的高度 in…… 题解列表 2024年05月31日 0 点赞 0 评论 372 浏览 评分:0.0
1096扫雷(构建两个数组,for循环遍历实现) 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;int main(){ int m, n; int k = 1;//后面输出第几组数据用的 whi…… 题解列表 2024年05月31日 0 点赞 0 评论 186 浏览 评分:0.0
全网最简单思路,简单代码+排序相除即可 摘要:解题思路:首先求等比数列最大比例,题目会给出一个等比数列的子序列。1、先从大到小排序,然后计算每一项与后一项的比例,取最小的比例就是题目要求的了。证明很简单,任意项之间的比值都为q^x,只要找到都能满…… 题解列表 2024年05月31日 0 点赞 0 评论 299 浏览 评分:6.0
为何正确率如此低? 摘要:```cpp #include using namespace std; const int N=1e6+10; int a[N]; int k,n; void dfs(int …… 题解列表 2024年05月30日 0 点赞 0 评论 362 浏览 评分:0.0
有规律的数列求和(c语言) 摘要:解题思路:假设分子为a,分母为b。Sn就为(a/b)+((a+b)/a)+(((a+b)+a)/(a+b))+......按照这个规律来设计代码。注意事项:参考代码:#include <stdio.h…… 题解列表 2024年05月30日 0 点赞 0 评论 104 浏览 评分:0.0