文章列表
简单的a+b(C++版)
摘要:参考代码如下:```cpp#includeusingnamespacestd;//使用C++里的命名空间intmain(){inta,b;//定义a,b两个变量while(cin>>a&g……
蓝桥杯2022年第十三届省赛真题-求和(简单解法91分,时间超限)
摘要:#include<iostream>using&nbsp;namespace&nbsp;std;int&nbsp;main(){int&nbsp;n,&am……
蓝桥杯2022年第十三届省赛真题-选数异或(简单解法64分,时间超限)
摘要:#include<iostream>using&nbsp;namespace&nbsp;std;int&nbsp;main(){int&nbsp;n,&am……
2667: 蓝桥杯2022年-青蛙过河(二分法查找)记录题目思路
摘要:**大佬代码:**用区间长度去测试能否满足条件,不能就再加,能就减,看能不能更小```cpp#includeusingnamespacestd;constintN=1e5+10;typedeflong……
555555555555java
摘要:importjava.util.Scanner;importjava.util.&nbsp;&nbsp;&nbsp;&nbsp;//vectorclassCPU{&am……
字串简写(用前缀和优化版本)
摘要:分享一下自己的思路,仅供参考,希望可以帮到大家###算法1(24分)#####(暴力枚举)O(n^2)####我们首先不考虑优化,怎么找到答案?```#include#include#includeu……
机器人跳跃:典型的整数二分
摘要:题目见于acwing730,2019今日头条登载,面试题Python不超时写法:a=int(input())b=list(map(int,input().split()))l=0r=max(b)def……
字串位置(背)求 解 next 数组的代码,子串 匹配 代码
摘要:题目描述给定一个父字符串s和子字符串p,请按照从前向后的顺序,请求出p在s中所有出现的起始位置。例如:s="ABADABCEABABA",p="ABA",则求解……