第十四届省赛真题-子串简写踩坑记录 摘要:坑真的很多,最开始是用两个for嵌套用暴搜然后超时了,改了这种方法,一踩一个坑。先全部找出C1C2的位置并且记录数量,用C1的位置比对C2的位置,找到C1位置+K-1大于大于C2位置的时候,就把往后的…… 题解列表 2024年03月26日 0 点赞 0 评论 135 浏览 评分:0.0
数组记录,双指针循环,小白能看懂 摘要:解题思路:记录c1,c2在s中出现的位置和次数,用双指针循环,时间复杂度on注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;typed…… 题解列表 2024年03月26日 0 点赞 0 评论 126 浏览 评分:0.0
【二分法题解】编写题解 1885: 蓝桥杯2017年第八届真题-分巧克力 摘要:```#includeusingnamespacestd;typedeflonglongintLL;constintN=100010;intn,m;inth[N],w[N];boolcheck(int…… 题解列表 2024年03月26日 0 点赞 0 评论 99 浏览 评分:0.0
蓝桥杯算法提高VIP-摆花 摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())t=[0]+list(map(int,input().split()))dp=[[0]*(m+1)for_inra…… 题解列表 2024年03月26日 0 点赞 0 评论 71 浏览 评分:0.0
欧拉函数模板 摘要:参考代码://&nbsp;欧拉函数:&nbsp;&nbsp;φ(n)&nbsp;=&nbsp;n&nbsp;*&nbsp;(1&…… 题解列表 2024年03月27日 0 点赞 0 评论 80 浏览 评分:0.0
随便写写,记录一下 摘要:```pythondefturn_the_coin(s1,s2):new_s1=list(s1)new_s2=list(s2)change_function=lambdax:'*'ifx=='o'el…… 题解列表 2024年03月27日 0 点赞 0 评论 101 浏览 评分:0.0
排序问题(2) 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a.sort()b=a[::-1]foriinb:&nbsp;&nbsp;print(i,…… 题解列表 2024年03月27日 0 点赞 0 评论 62 浏览 评分:0.0
pythonsfrbtrhtrhhfgbfdbfb 摘要:解题思路:注意事项:参考代码:t=int(input())ans=0foriinrange(t):&nbsp;s=input()&nbsp;a=s.split()&nbsp;i…… 题解列表 2024年03月27日 0 点赞 0 评论 109 浏览 评分:0.0
匹配字符串的个数 摘要:#include#includeintmain(){chars1[6];chars2[81];while(gets(s1)!=NULL&&s1[0]!='#')//注意输出方式和限制条…… 题解列表 2024年03月27日 0 点赞 0 评论 120 浏览 评分:0.0
结构体输出成绩统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>structstu{&nbsp;&nbsp;charnum[…… 题解列表 2024年03月27日 0 点赞 0 评论 106 浏览 评分:0.0