Luka_2001
Luka_2001
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Luka_2001的博客
全部文章
(共17篇)
题解 | #反序相等# int->string->int
#include <iostream> #include<string> #include<algorithm> using namespace std; int reverse_(int x){ string str=to_string(x); ...
2024-02-16
0
184
题解 | #三角形的边# 非常简洁的解法
#include <iostream> using namespace std; int main() { int a, b,c; while (cin >> a >> b>>c) { if(a&&b...
2024-02-13
1
220
题解 | #畅通工程#
#include <iostream> #include<algorithm> using namespace std; const int maxnum=101; int points[maxnum]; int height[maxnum]; struct path{ ...
2024-02-13
0
168
题解 | #IP地址#
#include <iostream> #include<cstdlib> #include<string> using namespace std; int main() { string str; while(cin>>str){...
2024-02-13
0
252
题解 | #全排列#简简单单深度优先遍历
#include <iostream> #include<string> #include<vector> using namespace std; vector<string>res; //保存结果 void dfs(string s,...
2024-02-12
0
190
题解 |和最小生成树思路一致,并查集实现Kruskal算法
#include <iostream> #include<algorithm> using namespace std; #define maxnum 100 int tree[maxnum]; int height[maxnum]; struct edge{ i...
2024-02-12
0
152
题解 | #最大连续子序列#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ if(!n) break; int dp[n]; int ...
2024-02-12
0
197
首页
上一页
1
2
下一页
末页