【蓝桥杯】二分法求解--分巧克力 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; typedef long long ll; const int vinf = 100…… 题解列表 2023年03月26日 0 点赞 0 评论 196 浏览 评分:0.0
【蓝桥杯】分巧克力--二分查找 摘要:解题思路:注意事项:参考代码://分巧克力问题--标准的二分模板题 //判断条件以及二分上下界 #include <bits/stdc++.h> using namespace std; c…… 题解列表 2023年03月25日 0 点赞 0 评论 340 浏览 评分:9.0
蓝桥杯2022年第十三届省赛真题-统计子矩阵(前缀和 + 双指针) 摘要:####解题思路 1.求每列前缀和(i,j 为上下边界,则可看成用一维解决)。 2.用双指针 l, r 维护左右边界,当 r 边界确定时(找到了 sum > k 的区间),左边界 l 往右移寻找符…… 题解列表 2023年03月25日 1 点赞 1 评论 1193 浏览 评分:9.0
【贪心思想】巧克力 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> #define int long long using namespace std; const int N = 1…… 题解列表 2023年03月25日 0 点赞 0 评论 315 浏览 评分:0.0
矩阵交换行c++题解 摘要:解题思路:按吧按吧按吧按吧按吧按吧按吧按吧按吧注意事项:啥也没有参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[6]…… 题解列表 2023年03月25日 0 点赞 0 评论 215 浏览 评分:8.0
dfs+贪心解法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n,k;int dfs(int t){ if(t<=n) { …… 题解列表 2023年03月25日 0 点赞 0 评论 299 浏览 评分:0.0
数组切分 动态规划 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5+10;in…… 题解列表 2023年03月25日 0 点赞 0 评论 332 浏览 评分:0.0
判断一个数是否是质数(C++) 摘要:解题思路:注意事项:0和1不是质数参考代码:#include<iostream>using namespace std;bool check(int n)//检查这个数是否是质数,{ if (…… 题解列表 2023年03月25日 0 点赞 0 评论 196 浏览 评分:0.0
闲来无事写个题解 摘要:解题思路:使用“cout”,输出一个字符串.注意事项:注意不要落下标点哦参考代码: #include<iosteam> using namespace std; …… 题解列表 2023年03月24日 0 点赞 0 评论 1359 浏览 评分:9.7
蓝桥杯卡牌c++二分答案解法 摘要:# 二分答案 ## 首先按照现有的卡牌数量a排序 ## 每轮检查m是否能够将所有卡牌都改成mid个 ### check函数就是简单的遍历每一个 ### 直到当前这一个卡牌数量达到了mid 或…… 题解列表 2023年03月24日 0 点赞 0 评论 1076 浏览 评分:8.3