牛客440904392号
牛客440904392号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客440904392号的博客
全部文章
(共139篇)
直接用佛洛依德会溢出,实际上最先输入的边即最短距离,用并查集
#include <iostream> #include <vector> #include <climits> using namespace std; vector<int> parents; int find(int x) { retur...
2024-10-07
1
41
题解 | #字符串排序#
import java.util.ArrayList; import java.util.Comparator; import java.util.List; import java.util.Scanner; public class Main { public static void m...
2024-10-07
1
38
题解 | #代理服务器#
import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class Main { public static void main(String[] args) { Sca...
2024-10-06
1
47
题解 | #八进制#
//正常写法 #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; while (cin >&g...
2024-10-06
1
37
题解 | #阶乘#
//Java版代码 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); ...
2024-10-06
1
41
题解 | #找位置#
#include <iostream> #include <vector> #include <unordered_map> using namespace std; int main() { ios_base::sync_with_stdio(false...
2024-10-06
1
39
题解 | #二叉排序树#递归插入加递归遍历
#include <iostream> using namespace std; struct TreeNode { int val; TreeNode *left = nullptr, *right = nullptr; TreeNode(int x) : va...
2024-10-06
1
38
题解 | #打印日期#
//C++版代码 #include <iostream> #include <iomanip> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ...
2024-10-06
1
38
每次插入的时候找到第一个大于等于输入数的位置插入就行
#include <iostream> #include <list> #include <algorithm> using namespace std; int main() { int n; cin >> n; list&l...
2024-10-06
1
45
题解 | #IP地址#Python真是太优雅了
while True: try: for num in map(int, input().split('.')): if num < 0 or num > 255: print('No!') ...
2024-10-06
1
39
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页