屎盆子镶金边教程!!!!! 摘要:#include <stdio.h>#include <string.h>int main() { char part1[] = "Hell…… 题解列表 2024年11月12日 0 点赞 1 评论 50 浏览 评分:9.9
1207: 字符排列问题(排列组合的思想,合理利用全排列) 摘要:对于该题,通过排列组合的方法简单易懂注意:对于n个数的全排列的最多种类即为n!(n的阶乘)因为给出的数据有重复的字母,而重复的字母会对全排列的种类有影响思路: …… 题解列表 2024年11月12日 0 点赞 0 评论 50 浏览 评分:9.9
回文子串(三层嵌套循环复杂解法) 摘要:解题思路:从2个到整个为一对来对字符串进行检查;注意事项:各变量关系复杂,需花一定时间仔细琢磨;参考代码:一遍过真爽ヽ( ̄▽ ̄)ノ#include<stdio.h> #include&l…… 题解列表 2024年11月13日 0 点赞 0 评论 45 浏览 评分:9.9
线段(贪心) 摘要: #include using namespace std; const int N=1e6+10; struct node{ int…… 题解列表 2024年11月13日 0 点赞 0 评论 27 浏览 评分:9.9
简单算法,易理解 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))c=a[0]d=a[1]t=0while d%c!=0: t=d%c  …… 题解列表 2024年11月13日 0 点赞 0 评论 57 浏览 评分:9.9
蓝桥杯2024年第十五届省赛真题-遗迹 摘要:## 知识点 动态规划。 ## 题面 小蓝找到了一个外星文明留下来的遗迹,遗迹大门的屏幕上有一个长度为m 的字符串 t 和一个输入框,下面还有一个键盘,键盘为一个长度为 n 的字符串 s ,由一…… 题解列表 2024年11月14日 0 点赞 0 评论 170 浏览 评分:9.9
建立数组用冒泡排序求解(可扩展) 摘要:解题思路:冒泡排序注意事项:参考代码:#include<iostream>using namespace std;int main(){ in…… 题解列表 2024年11月14日 0 点赞 0 评论 154 浏览 评分:9.9
【计算两点间的距离】 (Java代码易懂) 摘要:注意事项:勾股定理a^2 + b^2 = c^2 参考代码: ```java import java.util.Scanner; public class Main { public…… 题解列表 2024年11月14日 0 点赞 0 评论 31 浏览 评分:9.9
拼接平方数 摘要:```python n, m = map(int, input().split()) ls = [i for i in range(n, m + 1) if int(i**0.5)**2 == i…… 题解列表 2024年11月14日 0 点赞 0 评论 28 浏览 评分:9.9
用二叉树的思想进行减枝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int asd(int a);int main(){ int m,a,b,i,j…… 题解列表 2024年11月14日 0 点赞 1 评论 52 浏览 评分:9.9