牛客440904392号
牛客440904392号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客440904392号的博客
全部文章
(共139篇)
题解 | #众数#Python真是太优雅了
from collections import Counter print(sorted(Counter(map(int, input().split())).items(), key=lambda x: (-x[1], x[0]))[0][0])
2024-10-07
1
49
题解 | #最小邮票数#01背包模板题,记住就行。
#include<iostream> #include <vector> #include <climits> using namespace std; int main() { int m, n; while (cin >> m &g...
2024-10-07
1
61
题解 | #大整数排序#
//C++版代码 #include <iostream> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(null...
2024-10-07
1
45
题解 | #特殊排序#
//C++版代码 #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios_base::sync_with_stdio(...
2024-10-07
1
51
题解 | #a+b#
//C++版代码 #include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); string a, b; ...
2024-10-07
1
40
题解 | #查找#
//C++版代码 #include <iostream> #include <algorithm> using namespace std; int main() { string s; int n; cin >> s >> n...
2024-10-07
1
41
题解 | #数字阶梯求和#
//C++版代码 #include <iostream> using namespace std; int main() { int a, n; while (cin >> a >> n) { string sum; ...
2024-10-07
1
46
题解 | #最短路径问题#
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.ha...
2024-10-07
1
43
题解 | #最大连续子序列#动态规划
#include <iostream> using namespace std; int main() { int k; while (cin >> k) { if (k == 0) break; int nums[k]; ...
2024-10-07
1
45
除孤立点外图连通且顶点度为偶数即可构成欧拉回路
import java.util.Scanner; public class Main { private static int[] parents; public static void main(String[] args) { Scanner sc = new ...
2024-10-07
1
39
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页