3038: 马走日 dfs 入门必写 摘要:解题思路:注意事项:参考代码:#include "bits/stdc++.h" using namespace std; // 全局变量…… 题解列表 2024年12月12日 0 点赞 0 评论 29 浏览 评分:0.0
1157: 亲和数 递归写的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int yssum(int a,int b){ if (b >…… 题解列表 2024年12月12日 0 点赞 0 评论 61 浏览 评分:0.0
c语言代码易懂 摘要:解题思路:注意事项:参考代码:int main (){ int a[10000]; int M; scanf ("…… 题解列表 2024年12月12日 0 点赞 0 评论 70 浏览 评分:0.0
蓝桥杯算法训练VIP-单词接龙 就离谱 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义字符串数组,用于…… 题解列表 2024年12月13日 0 点赞 0 评论 59 浏览 评分:0.0
分成互质组 为了这题开了张月卡 哈哈哈哈哈 呃 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int f(int&nbs…… 题解列表 2024年12月13日 0 点赞 0 评论 41 浏览 评分:0.0
剩下的苹果的角度 摘要:解题思路:对于剩下的苹果,一是剩下都是完整的苹果,那么虫子吃的苹果为y/x;二是剩下的苹果中有一个是虫子没吃完的苹果,那么虫子吃的苹果为y/x+1,困为x/y会取整数,加上1,1是虫子没吃完的那个苹果…… 题解列表 2024年12月13日 1 点赞 0 评论 59 浏览 评分:10.0
用三个数组储存数值,原顺序,大小顺序 摘要:解题思路:有三个数组,p,b,a。p为从小到大元素数值排序,并且起到储存元素数值的作用。a为p对应到原位置的顺序,从0开始,注意a也是按某种意义的从小到大排序,与p不同的是,它存的是原位置不是数值。b…… 题解列表 2024年12月14日 0 点赞 0 评论 24 浏览 评分:0.0
最长上升子序列 入门dp练习题 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ …… 题解列表 2024年12月14日 0 点赞 0 评论 30 浏览 评分:0.0
三角形 简单dp练习 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ …… 题解列表 2024年12月14日 0 点赞 0 评论 53 浏览 评分:0.0
找啊找啊找GF 题目描述有点东西 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量 in…… 题解列表 2024年12月14日 0 点赞 0 评论 35 浏览 评分:0.0