牛客568792594号
牛客568792594号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客568792594号的博客
全部文章
(共64篇)
题解 | #字母统计#
#include <bits/stdc++.h> using namespace std; const int N = 30; int cnt[N]; int main(){ string str; while (cin >> str){ for (int i...
2024-03-09
0
164
题解 | #统计字符#
#include <bits/stdc++.h> using namespace std; int main(){ string a, b; while (getline(cin, a)){ unordered_map<char, int> mp; uno...
2024-03-08
0
153
题解 | #简单密码#
#include <bits/stdc++.h> using namespace std; int main(){ string start; while (cin >> start){ if (start == "ENDOFINPUT"...
2024-03-08
0
160
题解 | #特殊乘法#
#include <bits/stdc++.h> using namespace std; int main(){ string a, b; while (cin >> a >> b){ int res = 0; for (int i=0; i&l...
2024-03-08
0
167
题解 | #找位置#
#include <bits/stdc++.h> using namespace std; const int N = 1010; int h[N], e[N], ne[N], idx; void add(int a, int b){ e[idx] = b; ne[idx] =...
2024-03-08
0
172
题解 | #找最小数#
#include <bits/stdc++.h> using namespace std; const int N = 110; int a[N]; typedef pair<int, int> PII; int main(){ int n; while(cin ...
2024-03-08
0
166
题解 | #查找#
#include <bits/stdc++.h> using namespace std; const int N = 110; int a[N]; int main(){ int n; while (cin >> n){ for (int i=0; i&...
2024-03-08
0
167
题解 | #小白鼠排队#
#include <bits/stdc++.h> using namespace std; typedef pair<int, string> PIS; bool my_cmp(PIS m1, PIS m2){ return m1.first > m2.firs...
2024-03-08
0
181
题解 | #整数奇偶排序#
#include <bits/stdc++.h> using namespace std; const int N = 20; int a[N]; int main(){ int n = 10; while (cin>>a[0]>>a[1]>>...
2024-03-08
0
173
题解 | #特殊排序#
#include <bits/stdc++.h> using namespace std; int main(){ int n; while (cin >> n){ vector<int> a; for (int i=0; i<n; i...
2024-03-08
0
171
首页
上一页
1
2
3
4
5
6
7
下一页
末页