牛客142529159号
牛客142529159号
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
牛客142529159号的博客
全部文章
(共26篇)
题解 | #找出直系亲属#
#include <iostream> using namespace std; const int N = 30; int son[N]; int find(int a, int b) { int cnt = 0; while(a != son[a] && a != b...
2023-03-19
0
355
题解 | #欧拉回路#
#include <iostream> #include <cstring> using namespace std; const int N = 1010; int g[N][N]; int n, m; //深搜 + 回溯剪枝 bool dfs(int start, int...
2023-03-18
1
447
题解 | #Sharing#
#include <iostream> #include <cstring> using namespace std; const int N = 1e6; int ne[N]; int main() { int a, b, n; while(cin >...
2023-03-18
0
347
题解 | #Grading#
#include <iostream> #include <algorithm> #include <cmath> using namespace std; int main() { int p, t, g1, g2, g3, gj; while...
2023-03-18
0
274
题解 | #游船出租#
#include <iostream> #include <string> #include <map> using namespace std; int add(string a, string b) { int h = (a[0] - b[0]) * ...
C++
2023-03-18
0
414
题解 | #最大连续子序列#
#include <iostream> using namespace std; const int N = 10010; // dp保存以第k个元素结束的子序列的最大值, // a保存输入数据,l保存第k个元素结束的子序列的第一个元素的下标 int dp[N], a[N], l[N];...
2023-03-18
0
346
题解 | #Hello World for U#
#include <iostream> #include <string> #include <cstring> using namespace std; const int N = 30; char res[N][N]; void printU(string s...
2023-03-18
0
364
题解 | #最小长方形#
#include <iostream> #include <string> using namespace std; //判断是否a < b; bool cmp(string a, string b) { if(a[0] == '-' && b[0] == '...
2023-03-18
0
406
题解 | #ZOJ问题#
#include <iostream> #include "string" #include "algorithm" #include "cstring" using namespace std; bool ac(string s) { int n = s.size(); ...
2023-03-18
0
360
题解 | #简单计算器#
#include <iostream> #include <cstring> #include <stack> #include <map> using namespace std; map<char, int> level = {{'+'...
2023-03-18
0
328
首页
上一页
1
2
3
下一页
末页