勋谦
勋谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勋谦的博客
全部文章
(共77篇)
题解 | #密码翻译#
#include<bits/stdc++.h> using namespace std; int main(){ string str; getline(cin,str); for(int i = 0;i < str.size();i ++){ if(str[...
2024-06-01
0
133
题解 | #统计字符#
#include <bits/stdc++.h> using namespace std; int main(){ int num[128]; string str1,str2; while(getline(cin,str1)){ if(str1 == "...
2024-05-31
0
114
题解 | #简单密码#
#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getline(cin,str)){ if(str == "ENDOFINPUT"){ break...
2024-05-31
0
131
题解 | #特殊乘法#
#include <bits/stdc++.h> using namespace std; int main(){ string s1,s2; while(cin >> s1 >> s2){ int ans = 0; for(int i = 0...
2024-05-31
0
122
题解 | #小白鼠排队#自定义CMP
#include <bits/stdc++.h> using namespace std; struct Mouse{ int weight; string color; }mouse[110]; bool cmp(Mouse m1,Mouse m2){ return m1....
2024-04-27
0
136
题解 | #特殊排序#快排
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int q[N]; void quick_sort(int q[],int l ,int r){ if(l >= r)return ;...
2024-04-27
0
141
题解 | #整数奇偶排序#重写CMP函数
#include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 10; int arr[maxn]; bool cmp(int x,int y){ if(x % 2 == 1 && y %...
2024-04-26
0
139
题解 | #成绩排序#结构体自定义排序
#include <bits/stdc++.h> using namespace std; struct Student{ int num; int score; }stu[20]; bool cmp(Student x,Student y){ if(x.score == y...
2024-04-25
0
134
题解 | #排序#sort排序
#include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 10; int a[maxn]; int main(){ int n; while(cin >> n){ for(int ...
2024-04-25
0
137
题解 | #查找#系统自带散列表
#include <bits/stdc++.h> #include <unordered_map> using namespace std; const int maxn = 1000 + 10; const int raxn = 1e6; unordered_map&l...
2024-04-25
0
171
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页