猴子吃桃。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n;&nb…… 题解列表 2025年03月01日 0 点赞 0 评论 300 浏览 评分:0.0
C语言:三个数组+两个函数 解决问题【豆包改过的代码】 摘要:解题思路:【原代码是我写的,现在这个代码是豆包改的,和我原本想法细节上有出入,我就不解释了,直接分享代码吧】注意事项:参考代码:#include <stdio.h>#include <…… 题解列表 2025年03月01日 0 点赞 0 评论 430 浏览 评分:0.0
震宇大神的杀毒软件(冒泡) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num[100]; while (~scanf("%d", &…… 题解列表 2025年03月02日 0 点赞 0 评论 130 浏览 评分:0.0
一看就懂的简单代码 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[6]={100,50,10,5,2,1};int main(…… 题解列表 2025年03月03日 0 点赞 0 评论 290 浏览 评分:0.0
状态管理+贪心 摘要:```cpp#include #include using namespace std;//状态管理加贪心int main(){ ios::sync_with_s…… 题解列表 2025年03月03日 0 点赞 0 评论 148 浏览 评分:0.0
3209: 蓝桥杯2024年第十五届省赛真题-好数 简单易懂的方法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;//个,百,万是奇数位,十,千,十万是偶数位int ishaoshu(i…… 题解列表 2025年03月03日 6 点赞 1 评论 1301 浏览 评分:0.0
二分+哈希表 摘要:解题思路:利用哈希表存储数据的位置,然后利用二分法减少时间复杂度,空间换时间。注意事项:注意数据的存储结构参考代码:import java.util.*;public class Main { &nb…… 题解列表 2025年03月03日 0 点赞 0 评论 461 浏览 评分:0.0
编写题解 1431: 蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num[100]={0}, bu = 0, i, f = 0; scanf("…… 题解列表 2025年03月03日 0 点赞 0 评论 296 浏览 评分:0.0
dfs遍历结点 摘要: #include using namespace std; const int N = 55; int arr[N][N], v[N], n; void dfs(int a,…… 题解列表 2025年03月03日 0 点赞 0 评论 213 浏览 评分:0.0
超详细的思路历程 摘要:参考代码:#include<stdio.h>#include<string.h>/* 解密 1.一个大写字母(原文)对应一个大写字母(密文) 2.给你一个原文和一个密文,要求你…… 题解列表 2025年03月03日 0 点赞 0 评论 117 浏览 评分:0.0