笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #最大子矩阵#
#include <algorithm> #include <bits/stdc++.h> #include <climits> #include <vector> using namespace std; //求一维数组的最大连续子数列的值 int...
2024-03-06
0
192
题解 | #最大序列和#
#include <bits/stdc++.h> #include <climits> using namespace std; int main() { long long n; while(cin>>n){ long long...
2024-03-06
0
173
题解 | #吃糖果#
#include <iostream> using namespace std; //递归方式 int func(int n){ if(n <= 1) return 1; return func(n-1)+func(n-2); } //dp方式 in...
2024-03-06
0
175
题解 | #质因数的个数#
#include <cmath> #include <iostream> using namespace std; //分解质因数 bool isPrime(int n){ for(int i =2;i<sqrt(n);i++){ if(n%i...
2024-03-03
0
154
题解 | #手机键盘#
#include <iostream> #include <vector> using namespace std; vector<string>v; int getTime(string s){ int time = 0; int lastB...
2024-03-03
0
175
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页