牛客440904392号
牛客440904392号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客440904392号的博客
全部文章
(共139篇)
题解 | #求解立方根#二分法和牛顿迭代法模板题,记住就行。
//二分法 #include <stdio.h> int main() { float a; scanf("%f", &a); float left = -3, right = 3; while (left <= righ...
2024-10-03
1
52
题解 | #搬水果#用小根堆依次弹出两个元素,相加后插入堆。
#include<iostream> #include<queue> using namespace std; int main() { int n; while (cin >> n) { if (n == 0) break; ...
2024-10-03
1
47
题解 | #排列与二进制#
//C语言版代码 #include <stdio.h> int main() { int n, m; while (scanf("%d%d", &n, &m) != EOF) { if (n == 0 &&...
2024-10-03
1
49
题解 | #连通图#并查集模板题,记住就行。
#include <stdio.h> int parents[1001]; int find(int x) { return x == parents[x] ? x : (parents[x] = find(parents[x])); } int main() { int...
2024-10-03
1
47
题解 | #素数判定#素数筛法模板题,记住就行。
//埃氏筛法 //C++版代码 #include <iostream> #include <vector> using namespace std; int main() { vector<bool> isPrime(1001, true); is...
2024-10-03
1
52
先排序再根据前两个的平方和与第三个平方的大小关系判断
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(S...
2024-10-03
1
38
题解 | #互换最大最小数#
input() nums = list(map(int, input().split())) min_index = max_index = 0 for i in range(len(nums)): if nums[i] < nums[min_index]:min_index = i ...
2024-10-03
1
68
题解 | #百鸡问题#两重暴力for循环枚举就行
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n ...
2024-10-03
1
47
题解 | #排名#写个while循环就行
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { private static class Student { private fi...
2024-10-03
1
65
题解 | #A + B#用map做个映射就行
import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class Main { public static void main(String[] args) { Sca...
2024-10-02
1
55
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页