编写题解 1216: 成绩转换 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; while(cin>>n){ …… 题解列表 2022年03月31日 0 点赞 0 评论 354 浏览 评分:0.0
蓝桥杯VIP算法训练-轨道炮-看完秒懂的(c++map) 摘要:解题思路:轨道炮:看题找算法:典型map题目思路:1.首先横向射和纵向射是分立的问题,可以分别解决然后取最大值。2.单个方向上问题就是:给定初始位置和速度,求一个时间和位置使得在这个时间和位置上重合的…… 题解列表 2022年03月31日 0 点赞 3 评论 947 浏览 评分:3.5
编写题解 1211: 平方和与立方和 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<math.h>using namespace std;void func(int m…… 题解列表 2022年03月31日 0 点赞 0 评论 480 浏览 评分:0.0
编写题解 1210: 小明A+B 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int a,b; …… 题解列表 2022年03月31日 0 点赞 0 评论 417 浏览 评分:0.0
编写题解 1206: 字符串问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; c…… 题解列表 2022年03月31日 0 点赞 0 评论 388 浏览 评分:0.0
[AC代码] 自适应辛普森求积分 摘要:解题思路:用自适应辛普森求多个圆在矩形ab内的并面积注意事项:参考:www.luogu.com.cn/problem/P4525www.luogu.com.cn/problem/SP8073将超出矩形…… 题解列表 2022年03月31日 0 点赞 0 评论 981 浏览 评分:8.2
史上最强数学题解(公倍数) 摘要:解题思路:公倍数之后的全部情况都可以通过两数之差来实现,因此只需要关注公倍数之前的情况即可。公倍数可以全部用两数相加实现,在此基础上减掉另外一个数后,两数之差便无法弥补缺口。注意事项:参考代码:#in…… 题解列表 2022年03月31日 1 点赞 0 评论 639 浏览 评分:0.0
蓝桥杯算法提高VIP-聪明的美食家-最大不上升子序列(!不上升) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>using namespace std;int a[10…… 题解列表 2022年03月31日 0 点赞 0 评论 431 浏览 评分:9.9
1523: 蓝桥杯算法提高VIP-打水问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int n, m, a[1010], b[1010][1…… 题解列表 2022年03月31日 0 点赞 0 评论 578 浏览 评分:0.0
C/C++ 耗时2ms 回溯,非Next_permutation 摘要:(想偷懒看了一眼题解,全都是next_permutation属于是和题目要求的完全不一样了,于是就自己写了一篇)为什么有些题解用的是c++的next_permutation要说代码是c的。解题思路:用…… 题解列表 2022年03月31日 0 点赞 0 评论 664 浏览 评分:9.9