烤肉__
烤肉__
全部文章
题解
归档
标签
去牛客网
登录
/
注册
烤肉__的博客
全部文章
/ 题解
(共38篇)
题解 | #最大公约数#
不要弄那么多花里胡哨的,搞个最简单的 #include <iostream> using namespace std; int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); } int main() { ...
C++
2022-01-23
8
384
题解 | #N的阶乘#
最最最简单的无脑乘法 #include <iostream> #include <vector> using namespace std; int n; vector<int> mul(vector<int> &A, int b) { ...
C++
2022-01-23
2
410
题解 | #字符串排序#
用最简单的排序做 #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; bool cmp(string &a...
C++
2022-01-23
1
436
题解 | #采药#
01背包问题,用滚动数组优化 #include <iostream> using namespace std; const int N = 110, M = 1010; int n, m; int f[M]; int v[N], w[N]; int main() { cin ...
C++
2022-01-23
0
338
题解 | #求平均年龄#
#include <iostream> using namespace std; const int N = 105; int a[N]; int n; int main() { cin >> n; for (int i = 0; i < n; ++...
C++
2022-01-23
0
366
题解 | #整数奇偶排序#
用最简单无脑的写法,弄两个数组分别存 #include <iostream> #include <algorithm> using namespace std; const int N = 15; int a[N], b[N]; int cnt1, cnt2; int m...
C++
2022-01-23
0
388
题解 | #打印极值点下标#
纯模拟 #include <iostream> using namespace std; const int N = 150; int a[N]; int n; int main() { while (cin >> n) { for (i...
C++
2022-01-23
0
393
题解 | #全排列#
回溯法 #include <iostream> #include <string> using namespace std; const int N = 10; int n; char path[N]; string str; bool vis[N]; void dfs...
C++
2022-01-22
0
435
题解 | #谁是你的潜在朋友#
直接存映射 #include <iostream> using namespace std; const int N = 210; int a[N], b[N]; int main() { int n, m; scanf("%d%d", &n, &m)...
C++
2022-01-21
0
343
题解 | #查找学生信息#
用STL自带的哈希存 #include <iostream> #include <string> #include <unordered_map> using namespace std; struct Student { string name; ...
C++
2022-01-21
0
397
首页
上一页
1
2
3
4
下一页
末页