一只橘橘猫
一只橘橘猫
全部文章
分类
coderforces(20)
dp动态规划(3)
icpc(8)
KMP算法(3)
leetcode(1)
STL(1)
人工智能(2)
优先队列(1)
图论(3)
字符串(5)
搜索(2)
数学(4)
日记(1)
最短路(3)
未归档(29)
杭电多校(7)
牛客多校(11)
牛客寒假训练营2020(6)
牛客练习赛(8)
线段树 树状数组(2)
贪心(4)
题解(25)
归档
标签
去牛客网
登录
/
注册
一只橘橘猫的博客
希望做个有用的人
TA的专栏
27篇文章
0人订阅
acm菜鸡日常
20篇文章
2407人学习
剑指offer
7篇文章
1157人学习
Pytorch入门
0篇文章
0人学习
全部文章
(共149篇)
菜鸡自传
Part 1 多刷题,多打比赛,短时间内提升自己能力的最好手段 依旧记得自己刚入队的那天,就有一场牛客的比赛,做了半天出来一道很简单的题,做的很自闭,很多很多题都是自己连思绪都没有的,虽然大家都是刷了vj的100道题才进来的,但是仍然可以理解为是零基础。起初,我加入acm的目的是想有点事情做,我也感...
2021-01-21
1
571
西北工业大学“编程之星”程序设计挑战赛 A 张经理的员工
来自专栏
解法: 时间复杂度: std: #include <bits/stdc++.h> using namespace std; #define ll long long const int maxn = 100005; int a[maxn] , b[maxn]; ll pre[max...
2020-05-02
13
2163
[每日一题] 4.30 换个角度思考
题意: 解法: 时间复杂度: std: #include <bits/stdc++.h> #define per(i,a,b) for(int i=a;i<=b;++i) using namespace std; const int maxn=100005; int n,m;...
2020-04-29
1
1590
[每日一题] 4.27 Removal
来自专栏
题意: 解法: for(int i=1;i<=n;i++){ //枚举第i个数字前面i-m个位置,是否存在相同的数字 for(int j=i;j>=max(1,i-m);j--){ b[j] = (b[j]%mod + b[j-1]%mod - d...
2020-04-24
2
1601
[每日一题] 4.23 子序列
来自专栏
题意: 解法: 时间复杂度: std: #include <bits/stdc++.h> using namespace std; #define ll long long const int maxn = 105; int dp[maxn],a[maxn]; const int ...
2020-04-23
1
1253
[每日一题] 4.22 K-th Number
来自专栏
题意: 解法: 时间复杂度: std: #include <bits/stdc++.h> using namespace std; #define ll long long const int maxn = 100005; ll a[maxn]; ll n,k,m; bool c...
2020-04-21
2
1318
[每日一题] 4.21 糖糖别胡说,我真的不是签到题目
来自专栏
题意: 解法: 时间复杂度: std: #include <bits/stdc++.h> using namespace std; #define ll long long const int maxn = 500005; struct node{ int x; ...
2020-04-20
23
1972
剑指offer——数组中出现次数超过一半的数字
来自专栏
solution: std: class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers) { map<int , int> mp; int si...
2020-04-19
1
1089
剑指offer——连续子数组的最大和
来自专栏
solution: std: class Solution { public: int FindGreatestSumOfSubArray(vector<int> array) { int ans = -1e9,cnt = 0; for(int...
2020-04-19
1
1157
剑指offer——最小的K个数
来自专栏
solution: std: class Solution { public: vector<int> GetLeastNumbers_Solution(vector<int> input, int k) { vector<int> an...
2020-04-19
1
1027
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页