牛客129401600号
牛客129401600号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客129401600号的博客
全部文章
(共2篇)
题解 | #Pre-Post#
#include <iostream> const int N = 30; using namespace std; int n; // n叉树 int dp[N][N]; // 组合数 void cal() { dp[0][0] = 1; for ...
2023-10-26
0
197
题解 | #任务调度#
#include <iostream> #include <cstring> #include <queue> const int N = 100010; using namespace std; int n; string str; vector<i...
2023-10-26
1
205