勋谦
勋谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勋谦的博客
全部文章
(共77篇)
题解 | #进制转换#
#include <iostream> #include <string.h> #include <algorithm> using namespace std; string s,ans; string convert(){ for(int i = 0 ...
2024-06-26
0
144
题解 | #谁是你的潜在朋友#
#include <iostream> #include <string.h> using namespace std; const int N = 1e5 + 10; int a[N],s[N]; int main(){ int n,m; cin >>...
2024-06-26
0
120
题解 | #查找学生信息#
#include <iostream> using namespace std; struct student{ int num; string name; string sex; int age; }stu[1100]; int main(){ int n,m; ci...
2024-06-26
0
129
题解 | #最小花费#
#include<iostream> #include<vector> #include<climits> using namespace std; int l1, l2, l3, c1, c2, c3; //计算不同路程对应得价格,distance &l...
2024-06-26
0
150
题解 | #最大序列和#
#include <iostream> #include <algorithm> #include <string.h> using namespace std; const int N = 1e6 + 10; long long a[N]; int n; ...
2024-06-26
0
107
题解 | #递推数列#
#include <iostream> using namespace std; const int N = 1e5 + 10; int a[N]; int main(){ int a0,a1,p,q,k; for(int i = 0;i < 2;i ++)cin &...
2024-06-26
0
161
题解 | #n的阶乘#
#include <iostream> using namespace std; long long jie(int n){ if(n == 1){ return 1; }else return n * jie(n - 1); } int main(){ int n; ...
2024-06-26
0
126
题解 | #求最大最小数#
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int main(){ int n,s[N]; while(cin >> n){ for(int i = 0;i &l...
2024-06-22
0
138
题解 | #二叉树遍历#
#include <bits/stdc++.h> using namespace std; const int N1 = 1e8 + 5; const int N2 = 1e2 + 5; int pos,len,t; char tree[N1]; char str[N2]; vo...
2024-06-21
0
124
题解 | #球的半径和体积#
#include <bits/stdc++.h> #include <math.h> using namespace std; int main(){ double x1,y1,z1,x2,y2,z2; while(cin >> x1 >>...
2024-06-21
0
128
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页