燕草如碧
燕草如碧
全部文章
分类
题解(60)
归档
标签
去牛客网
登录
/
注册
燕草如碧的博客
全部文章
(共66篇)
题解 | #火车进站#已画图,用树形结构进行多分支穷举
//树解法 const rl = require("readline").createInterface({ input: process.stdin }); var iter = rl[Symbol.asyncIterator](); const readline = asyn...
Javascript Node
Javascript V8
2022-11-06
0
351
题解 | #最小覆盖子串#JS解法详细注释,逐行!
/** * * @param S string字符串 * @param T string字符串 * ...
Javascript Node
2022-11-01
0
326
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
0
284
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
0
336
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
0
281
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
1
299
题解 | #相差不超过k的最多数#python详细注释
n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0#左指针 right = 0#右指针 ...
Python3
2022-08-02
1
301
题解 | #最长公共子序列(一)#优化大佬的了
#算最长公共子序列 a,b = map(int,input().split(" ")) x,y = input(),input() dp = [[0]*(b+1) for _ in rang...
2022-07-31
0
311
题解 | #矩阵乘法计算量估算#二叉树解决
#二叉树那个没整形数据,我整形了下可以用了 from string import ascii_uppercase input_seq = [ '3', '50 10', ...
Python3
2022-07-16
1
358
题解 | #24点游戏算法#
#参考大佬穷举的代码,做了优化,只选取不重复的两个数进行递归 def dfs(nums): if not nums: retu...
Python3
2022-07-12
2
586
首页
上一页
1
2
3
4
5
6
7
下一页
末页