牛客440904392号
牛客440904392号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客440904392号的博客
全部文章
(共185篇)
题解 | #最大公约数1#库函数秒了
#include <bits/stdc++.h> //#include <iostream> //#include <vector> //#include <numeric> //#include <algorithm> using nam...
2024-08-12
1
120
题解 | #最大公约数#库函数秒了
#include <iostream> #include <numeric> using namespace std; int main(){ int a,b; while(cin>>a>>b){ cout<<...
2024-08-12
3
139
题解 | #最长公共子序列(一)#动态规划加滚动数组秒了
#include <bits/stdc++.h> //#include <iostream> //#include <vector> //#include <string> //#include <algorithm> using name...
2024-08-11
2
119
题解 | #最大序列和#动态规划加滚动数组秒了
#include <bits/stdc++.h> //#include <iostream> //#include <vector> //#include <climits> //#include <algorithm> using nam...
2024-08-11
1
147
题解 | #N阶楼梯上楼问题#双指针秒了
#include <iostream> using namespace std; int main(){ int n; while(cin>>n){ int p,q=0,r=1; while (n--){ ...
2024-08-11
1
123
首页
上一页
10
11
12
13
14
15
16
17
18
19
下一页
末页