题解列表

筛选

Python | 生成器

摘要:### yieldfrom运用在dfs问题 2038: [简化型背包]([简化型背包](https://www.dotcpp.com/vipstudy_suanfa/problem/?id=203……

python|sys.stdin

摘要:```pythonimport sysfrom collections import Counter# python可能超时过不了全部,使用sys.stdin一次all in输入数据,……

python|并查集

摘要:```pythonclass UnionFind: def __init__(self, n): self.parents = list(range(n))……

超级简单易懂

摘要:解题思路:先按照行找到最大值,再按照列比对是否为最小值,匹配成功则输出鞍点注意事项:参考代码:l = []for i in range(5): s = list(map(in……