题解列表

筛选

取模(C语言版本)

摘要: 话不多说直接上代码 #include int main() { int n,m,b; scanf("%d",&b); int i; int j; wh……

python的测试数据有问题(AC蓝桥官网)

摘要:解题思路:注意事项:在本地跑出来的结果和测评的结果数据不一样,此题py数据处理有问题参考代码:t=int(input())byte=0for _ in range(t):    s=input()  ……

第二大整数——python

摘要:解题思路:注意事项:参考代码:L = list(map(int,input().split()))L1 = []for i in L:    if i == 0:        break    el……

记忆化搜索博弈树

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,len;unordered_map<string,int> vis;//……

BFS+康托压缩

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;string s1,s2;int a[5][5],b[5][5];int jiecheng[10]={1,1,2,……