编写题解 2950: 素数回文数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { int a, i, j, sum = 0, b[1…… 题解列表 2025年03月21日 3 点赞 0 评论 166 浏览 评分:10.0
一笔画问题(dfs) 摘要:#include<bits/stdc++.h>using namespace std;int n, m, c;const int N = 1e3 + 5;int mapp[N][N], s…… 题解列表 2025年03月21日 0 点赞 0 评论 1269 浏览 评分:0.0
C++ : 类和两种访问权限的练习 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;const int n=3 ;class MAX{&nb…… 题解列表 2025年03月21日 0 点赞 0 评论 1412 浏览 评分:0.0
C++ : 类和两种访问权限的练习 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;class sum{ priva…… 题解列表 2025年03月21日 1 点赞 0 评论 1183 浏览 评分:0.0
幸运儿(约瑟夫环-模拟+ Vector) 摘要:解题思路:模拟 + Vector注意事项:参考代码:#include<iostream>#include<vector>usingn…… 题解列表 2025年03月20日 1 点赞 0 评论 1093 浏览 评分:10.0
年会-树形DP 摘要:解题思路:树形DPf[x][0]表示以x为根的子树,且x不参加舞会的最大快乐值f[x][1]表示以x为根…… 题解列表 2025年03月20日 0 点赞 0 评论 414 浏览 评分:0.0
蓝桥杯2024年第十五届省赛真题-好数,c语言包一清二楚 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k=0,x;  …… 题解列表 2025年03月20日 4 点赞 0 评论 1299 浏览 评分:10.0
并查集(本题输入会超时要关闭输入流) 摘要:#include<bits/stdc++.h>using namespace std;const int N = 1e5 + 5;int fa[N], rk[N];int n, m;voi…… 题解列表 2025年03月20日 0 点赞 0 评论 295 浏览 评分:0.0
换一种思路来写用set中upper_bound()函数 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <set>using namespace std;typedef long long ll…… 题解列表 2025年03月20日 1 点赞 0 评论 316 浏览 评分:10.0
最大值和最小值的差,包清楚的c语言。 摘要:…… 题解列表 2025年03月20日 1 点赞 0 评论 143 浏览 评分:10.0