YaoYaoLe
YaoYaoLe
全部文章
题解
归档
标签
去牛客网
登录
/
注册
YaoYaoLe的博客
全部文章
/ 题解
(共1篇)
2020年牛客算法入门课练习赛1
A 第K小数 题目描述: 给你一个长度为n的序列,求序列中第k小数的多少。 思路: 因为数字比较小,用桶排序,可以做到O(n) 代码: #include <bits/stdc++.h> using namespace std; const int N=5e6+10; inline int...
2020-05-26
0
577