黑乎乎的酱猪肉
黑乎乎的酱猪肉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
黑乎乎的酱猪肉的博客
全部文章
(共25篇)
题解 | #浮点数加法#
#include<bits/stdc++.h> using namespace std; //取得数字 void GetNum(string a, string &aL, string &aR) { bool noDot = true; for (in...
2024-04-06
0
189
题解 | #剩下的树#
#include<bits/stdc++.h> #include<vector> using namespace std; int main() { int l;//马路的长度 int m;//M组整数 while (scanf("%d...
2024-04-04
0
164
题解 | #日期累加#
#include<bits/stdc++.h> using namespace std; void NextDay(int &year,int &month,int &day) { // & 出现在定义or形参当中 表示引用的意思 出现在其他位置,表...
2024-04-03
0
134
题解 | #打印日期#
#include<bits/stdc++.h> using namespace std; void NextDay(int &year,int &month,int &day) { // & 出现在定义or形参当中 表示引用的意思 出现在其他位置,表...
2024-04-03
0
155
题解 | #今年的第几天?#
#include<bits/stdc++.h> using namespace std; void NextDay(int &year,int &month,int &day) { // & 出现在定义or形参当中 表示引用的意思 出现在其他位置,表...
2024-04-03
0
195
题解 | #xxx定律#
#include<bits/stdc++.h> using namespace std; int main() { int n; while(scanf("%d",&n)!=EOF) { int count=0; while(n!=1) { ...
2024-04-03
0
153
题解 | #反序数#
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; int c; int d; for(int i=1000; i<=9999; ++i) { a=i/1000; b=i%...
2024-04-03
0
218
题解 | #最大上升子序列和#
#include <bits/stdc++.h> using namespace std; int dp[1001]; int main() { int N; while (scanf("%d", &N) != EOF) { ...
2024-04-02
0
199
题解 | #最大连续子序列#
#include <bits/stdc++.h> using namespace std; const int MAXN = 1e4 + 10; int arr[MAXN]; int dp[MAXN]; int main() { int n; while (sc...
2024-04-02
0
168
题解 | #最长公共子序列(一)#
#include <bits/stdc++.h> using namespace std; //4MB,超过局部变量的内存了,变成全局变量=>new申请堆空间 int dp[1002][1002];//dp[i][j] s1的前i个元素, s2的前j个元素 的最大公共长度 i...
2024-04-02
0
153
首页
上一页
1
2
3
下一页
末页