题解列表
自定义函数之字符提取
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *yuanyin(char *a){ int i,j; static char b[100……
单词替换.......................
摘要:解题思路:注意事项:参考代码:# 我服了,明明题目说a,b前后是没有空格的,但是去掉.strip()直接答案错误,只能说题目歧义很大,看来以后都得去一下前后空白符了
s = list(map(str……
蓝桥杯2015年第六届真题-移动距离
摘要:解题思路:通过简单数学得到两个门牌号的高度与距离最左边的宽度,相减求绝对值就好参考代码:#include<bits/stdc++.h>
using namespace std;
int w,m,n……
蓝桥杯2015年第六届真题-生命之树
摘要:解题思路:树形dp,查找最大子树和注意事项:集合可以为空,也就是说如果树中节点全小于0则为空集输出0参考代码:#include<bits/stdc++.h>
using namespace std;……
2576: 蓝桥杯2020年第十一届省赛真题-解码
摘要: #include
#include
#include
using namespace std;
char str1[100];
char st……
题解 1668: printf基础练习2
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
int main()
{
int num;
// 读取输入整数
scanf("%d", &n……
3151: 蓝桥杯2023年第十四届省赛真题-飞机降落
摘要:#include<iostream>using namespace std;const int N = 15;//创建飞机结构体struct plane { int Ti, Di, Li;}p[N];……