复旦周杰伦
复旦周杰伦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
复旦周杰伦的博客
全部文章
(共30篇)
题解 | #谁是你的潜在朋友#
#include <iostream> using namespace std; #include "map" int n, m; const int N = 210; int a[N]; int main() { map<int, int> Book; c...
2023-03-18
0
319
题解 | #开门人和关门人#
#include <cstdlib> #include <iostream> #include <queue> #include <vector> using namespace std; #include <map> #include "...
2023-03-18
0
337
题解 | #统计同成绩学生人数#
#include <iostream> #include <map> using namespace std; const int N = 1010; int n; map<int, int> score; int main() { while (cin...
2023-03-18
0
291
题解 | #魔咒词典#
#include "map" #include "iostream" #include "cstring" #include <algorithm> #include <cstdio> #include <string> using namespace std; ...
2023-03-18
0
318
题解 | #查找学生信息#
#include <iostream> #include <algorithm> #include "cstring" #include "map" #include "unordered_map" using namespace std; typedef struct st...
2023-03-18
0
380
题解 | #搬水果#
/// 注意 : 此动态 规划 是 只能合并相邻的两堆 /// 哈夫曼树 是 每次合并可以 从堆中 任意挑选 两堆 // ///状态表示: 集合: 第i堆到第j堆 合并的所有情况 属性: 代价最小 // /// 状态计算 : f[i][j] = min(f[i][k]+f[k][j]...
2023-03-18
0
417
题解 | #哈夫曼树#
#include <functional> #include <iostream> #include <vector> #include "queue" using namespace std; priority_queue<int, vector<i...
2023-03-18
0
348
题解 | #吃糖果#
典型 斐波那契数列动态规划 一步搞定 #include <iostream> #include <algorithm> using namespace std; const int N = 100; int f[N]; int n; int main() { ci...
2023-03-17
0
342
题解 | #N阶楼梯上楼问题#
#include <iostream> #include <algorithm> using namespace std; const int N =100; int f[N]; int n; int main() { cin >>n; f[1]...
2023-03-17
0
362
题解 | #二叉搜索树#
#include <iostream> #include <algorithm> #include <cstring> using namespace std; typedef struct BTnode { char data; struct B...
2023-03-17
0
289
首页
上一页
1
2
3
下一页
末页