SStarry
SStarry
全部文章
分类
归档
标签
去牛客网
登录
/
注册
SStarry的博客
全部文章
(共25篇)
题解 | #字符串排序# 字符串stl的使用
#include <algorithm> #include <iostream> using namespace std; string s; char res[1000]; bool cmp(char a, char b) { if(a >= 'A' &a...
2023-08-27
0
319
题解 | #最短路径# Floyd + 并查集
#include <iostream> using namespace std; const int N = 110; const int INF = 0x3f3f3f3f; const int MOD = 100000; int n, m; int path[N][N]; int ...
2023-08-25
0
361
题解 | #最短路径问题# Dijkstra算法
#include <iostream> #include <queue> #include <vector> using namespace std; const int N = 1010, INF = 0x3f3f3f3f; int n, m; int di...
2023-08-24
0
296
题解 | #欧拉回路# 度+并查集判断欧拉回路
//欧拉回路条件:1.结点度为偶数 2.连通分量为1 #include <iostream> using namespace std; const int N = 1010; int n, m; int p[N], d[N]; struct Edge{ int from;...
2023-08-24
0
394
题解 | #大整数的因子# 与进制转换思想类似
#include <iostream> using namespace std; string s; int div(string c, int x) { int remain = 0; for(int i = 0; i < c.size(); i++) ...
2023-08-24
0
276
题解 | #复数集合# 小根堆,大根堆的应用
#include <cstdio> #include <iostream> #include <queue> #include <string> #include <vector> using namespace std; int n; ...
2023-08-23
0
336
题解 | #进制转换2# 任意进制转换,但数的大小有限
#include <iostream> using namespace std; int m, n; string s; int main() { while(cin >> m >> n) { cin >> s; ...
2023-08-22
0
307
题解 | #10进制VS2进制# 10进制以内转换模板
#include <algorithm> #include <iostream> #include <iterator> using namespace std; string s; string transform(int m, int n, string ...
2023-08-22
0
313
题解 | #进制转换# 大数(字符串存储)进制转换
#include <iostream> #include <algorithm> using namespace std; string s; string bin(string num) { string res = ""; int ...
2023-08-22
0
266
题解 | #第一题# 简便的并查集做法
#include <iostream> using namespace std; const int N = 1000100; int p[N]; int e[N]; bool st[N]; int find(int x) { if(x != p[x]) p[x] = fi...
2023-08-15
0
277
首页
上一页
1
2
3
下一页
末页