8F76
8F76
全部文章
分类
归档
标签
去牛客网
登录
/
注册
8F76的博客
全部文章
(共38篇)
题解 | 游游的数字圈
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); typedef long long LL; //const int N=; int ...
2025-05-03
0
13
题解 | 游游的整数切割
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); typedef long long LL; //const int N=; int ...
2025-05-03
0
13
题解 | 小欧的奇数
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); typedef long long LL; //const int N=; int ...
2025-05-03
0
11
题解 | 小欧的括号嵌套
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); typedef long long LL; //const int N=; int ...
2025-05-03
0
11
题解 | 【模板】差分
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); #define rep(i, n) for (int i = 0; i < (n)...
2025-04-20
0
13
题解 | 【模板】二维差分
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); #define rep(i, n) for (int i = 0; i < (n)...
2025-04-20
0
17
题解 | 球格模型(简单版)
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); int main() { IOS int n, m, k; ci...
2025-04-08
0
20
题解 | 小数字
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); //const int N=; void solve() { int n, ...
2025-04-08
0
20
题解 | 最长公共子序列(一)
#include <iostream> #include <algorithm> using namespace std; const int N=1010; int n, m; char a[N], b[N]; int f[N][N];//f[i][j]表示a串前i个...
2025-04-08
0
28
题解 | 最长上升子序列(一)
#include <bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false), cin.tie(0); int n; int LIS(vector<int> &a) {...
2025-04-08
0
23
首页
上一页
1
2
3
4
下一页
末页