题解列表
1507: 蓝桥杯算法提高VIP-去注释
摘要:```cpp
#include
using namespace std;
int main()
{
char c;
while ((c = cin.get()) != EOF)//(c……
1446: 蓝桥杯2013年第四届真题-核桃的数量
摘要:解题思路:注意事项:参考代码:a, b, c = map(int, input().split())
i = 0
while True:
i += 1
su = max(a, ……
编写题解 2072: [STL训练]寻梦
摘要:解题思路:注意事项:参考代码:n=int(input())
for i in range(n):
strg_1=input()
strg_2=input().strip()
……
[编程入门]自定义函数处理最大公约数与最小公倍数
摘要:解题思路:三个函数注意事项:参考代码:#include<stdio.h>int gongyueshu(int f,int g){ int l,o; while(f%g!=0) { ……
HashMap的应用
摘要:解题思路:利用hashmap键值对 ,判断键是否存在对应的字符 ,不存在则初始化,值为1,表示第一次出现;存在的话值加一;最后遍历输出。注意事项: map.containsKey()判断键是否存在;……
编写题解 2074: [STL训练]A+B
摘要:解题思路:注意事项:参考代码:while True:
try:
a,b=map(str,input().split())
print(int(a.repl……
完全背包问题,动态规划!!
摘要:其实和01背包问题差别不大,01背包每件物品只能选一个,多重背包每件物品在不超过背包体积的条件下可以选择无限个!
```cpp
#include
using namespace std;
……
蓝桥杯2020年第十一届省赛真题-单词分析
摘要:水题
```cpp
#include
#include
#include
using namespace std;
string s;
int a[26] = { 0 };
int m……
蓝桥杯基础练习VIP-报时助手(JAVA题解)
摘要:解题思路:把m分成两种情况的数据:第一种m>=0&&m<=20把该块数字的英文用一个字符串数组存储;第二种m>20&&m<60使用switch(m/10)判断十位,再用strs[m%10]输出各位把h……