程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #最大连续子序列#
#include <algorithm> #include<iostream> #include <vector> using namespace std; int main() { int n; int maxv=0; while(ci...
2023-01-27
0
332
题解 | #毕业bg#
#include <iostream> #include <vector> #include<algorithm> using namespace std; int N; struct BG { int h; int l; int t; }...
2023-01-27
0
355
题解 | #最大报销额#
#include <bits/stdc++.h> #include <string> #include <vector> using namespace std; /*可以考虑将所有金额乘以100倍*/ int limit;//报销额度 double temp_l...
2023-01-27
1
388
题解 | #畅通工程#
#include <bits/stdc++.h> #include <vector> using namespace std; int city_num, road_num; int one_city, another_city; int a, b; int single; ...
2023-01-26
0
318
题解 | #火星A+B#
/*厘清题意:十进制38=火星制 1*5*3*2+1*3*2+1*2*/ #include <bits/stdc++.h> #include <vector> using namespace std; int prime[25]; string num1,num2;//两个火...
2023-01-26
1
408
题解 | #二叉搜索树#
#include <iostream> using namespace std; int n; string s1; //树 struct Tnode { char data; Tnode* l, * r; }; //将字符插入树 void insert(Tnode*& ...
2023-01-26
0
348
题解 | #找出直系亲属#
#include <bits/stdc++.h> using namespace std; int relations_num, questions_num; int child, mom, papa; char c, m, p; char pp1, pp2; int p1, p2; i...
2023-01-26
1
406
题解 | #继续畅通工程#
#include<bits/stdc++.h> using namespace std; int N, a, b, Cost, state, edge_num; struct edge { int one_pos; int another_pos; int cos...
2023-01-26
0
384
题解 | #奥运排序问题#
/*坑点:人数可能为0!!!*/ #include<iostream> #include<string> #include <vector> #include <algorithm> #include <vector> using name...
2023-01-26
0
331
题解 | #欧拉回路#
#include <bits/stdc++.h> #include <cstring> #include <vector> using namespace std; int N, M; int a, b; int g[1001][1001]; void dfs(i...
2023-01-25
0
407
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页