【贪心思想】巧克力 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> #define int long long using namespace std; const int N = 1…… 题解列表 2023年03月25日 0 点赞 0 评论 747 浏览 评分:0.0
矩阵交换行c++题解 摘要:解题思路:按吧按吧按吧按吧按吧按吧按吧按吧按吧注意事项:啥也没有参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[6]…… 题解列表 2023年03月25日 0 点赞 0 评论 525 浏览 评分:8.0
dfs+贪心解法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n,k;int dfs(int t){ if(t<=n) { …… 题解列表 2023年03月25日 0 点赞 0 评论 589 浏览 评分:0.0
数组切分 动态规划 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5+10;in…… 题解列表 2023年03月25日 0 点赞 0 评论 670 浏览 评分:0.0
判断一个数是否是质数(C++) 摘要:解题思路:注意事项:0和1不是质数参考代码:#include<iostream>using namespace std;bool check(int n)//检查这个数是否是质数,{ if (…… 题解列表 2023年03月25日 0 点赞 0 评论 562 浏览 评分:0.0
闲来无事写个题解 摘要:解题思路:使用“cout”,输出一个字符串.注意事项:注意不要落下标点哦参考代码: #include<iosteam> using namespace std; …… 题解列表 2023年03月24日 0 点赞 0 评论 1629 浏览 评分:9.7
蓝桥杯卡牌c++二分答案解法 #二分答案##首先按照现有的卡牌数量a排序##每轮检查m是否能够将所有卡牌都改成mid个###check函数就是简单的遍历每一个###直到当前这一个卡牌数量达到了mid或者m已经没有了就停止```cpp#include#definefore(i, 题解列表 2023年03月24日 0 点赞 0 评论 1483 浏览 评分:8.3
1492: 蓝桥杯算法提高VIP-产生数 ```cpp#include#includeusingnamespacestd;inttag[10][10],d[10],p[1000];intmain(){stringa;intn;while(cin>>a>>n){intx,y;for(inti=0;i>x>>y;tag[x][y]=1;}for( 题解列表 2023年03月24日 0 点赞 0 评论 794 浏览 评分:6.0
LikeWater - 2701: 蓝桥杯真题-取模(请问有谁知道看错题的痛!一直看成n mod x == m mod y 隔这儿一只写。。。) 摘要:####这是题目:给定 n, m ,问是否存在两个不同的数 x, y 使得 1 ≤ x < y ≤ m 且 n mod x = n mod y 。 ***最后的地方我看成了n mod x = m m…… 题解列表 2023年03月24日 0 点赞 0 评论 1000 浏览 评分:6.0