Python | 生成器 摘要:### yieldfrom运用在dfs问题 2038: [简化型背包]([简化型背包](https://www.dotcpp.com/vipstudy_suanfa/problem/?id=203…… 题解列表 2025年01月14日 1 点赞 0 评论 101 浏览 评分:10.0
编写题解 1004: [递归]母牛的故事(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; int sum[55];&nb…… 题解列表 2025年01月14日 34 点赞 0 评论 1538 浏览 评分:10.0
编写题解 2571: 蓝桥杯2020年第十一届省赛真题-回文日期(代码较长但易理解,注释清晰) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int A(int x);int B(int p);int main(){i…… 题解列表 2025年01月13日 1 点赞 0 评论 334 浏览 评分:10.0
最普通的数组解法 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){char arr[100];int i=0;scanf("%s&…… 题解列表 2025年01月14日 0 点赞 0 评论 290 浏览 评分:0.0
python|sys.stdin 摘要:```pythonimport sysfrom collections import Counter# python可能超时过不了全部,使用sys.stdin一次all in输入数据,…… 题解列表 2025年01月14日 1 点赞 0 评论 105 浏览 评分:10.0
python|并查集 摘要:```pythonclass UnionFind: def __init__(self, n): self.parents = list(range(n))…… 题解列表 2025年01月14日 0 点赞 0 评论 70 浏览 评分:0.0
2838: 有趣的跳跃解题 摘要:解题思路:不进行排序,1~n-1作为数组下标,命中的该元素直接设置为1(默认值为0),如果已经为1了,重新设置直接可以打印Not jolly,退出程序。最后对1-~n-1的数组元素直接判断,看值是否都…… 题解列表 2025年01月13日 0 点赞 0 评论 134 浏览 评分:0.0
出圈直接解法 摘要:解题思路:注意事项:同样适用于m大于n的情况。参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>i…… 题解列表 2025年01月13日 0 点赞 0 评论 179 浏览 评分:0.0
高精度乘法 摘要:解题思路:思路很简单和加法差不多,只不过可能每个位数相乘后怎么加才是重点,重点理解这串代码:```cpp while(ls1>>s2; if(s1.size()…… 题解列表 2025年01月13日 1 点赞 0 评论 418 浏览 评分:0.0
c++++++++++++++++++++++++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct node { ch…… 题解列表 2025年01月13日 0 点赞 0 评论 133 浏览 评分:0.0