52Ulpianus
52Ulpianus
全部文章
分类
归档
标签
去牛客网
登录
/
注册
52Ulpianus的博客
全部文章
(共24篇)
题解 | #统计字符#
#include <iostream> using namespace std; void count(string s1,string s2) { int cnt; for(int i = 0;i < s1.length(); i++) { cn...
2023-01-26
2
397
题解 | #ZOJ#
#include <iostream> #include <algorithm> using namespace std; void displayZOJ(string s) { int cz = 0,co = 0,cj = 0; for(int i = 0...
2023-01-24
0
371
题解 | #数组逆置#(reverse秒了)
#include <iostream> #include <algorithm> using namespace std; int main() { string str; while(cin >> str) { reverse(...
2023-01-24
0
309
题解 | #小白鼠排队#(结构体+sort)
#include <iostream> #include <algorithm> using namespace std; struct rat { int weight; string color; }; bool cmp(rat a,rat b) { ...
2023-01-23
0
299
题解 | #子串计算#(map+substr)
#include <iostream> #include <map> using namespace std; map<string, int> cnt; //自动初始化 int main() { string str; while(cin &...
2023-01-23
0
400
题解 | #三角形的边#(不需要算最小值和次小值)
#include <iostream> #include <algorithm> using namespace std; int calDiff(int a,int b,int c) { int diff; int maxn = max({a,b,c});...
2023-01-22
0
357
题解 | #字母统计#(map解法)
#include <iostream> #include <map> using namespace std; int main() { string str; while(cin >> str) { map<char, i...
2023-01-22
0
283
题解 | #特殊乘法#(死算方法)
#include <iostream> using namespace std; int getD(int n){ int d = 0; while(n > 0){ n = n / 10; d++; } return...
2023-01-20
0
280
题解 | #数字求和#
#include <iostream> using namespace std; int main() { int a, sum = 0, n; cin >> a; for(int i = 0;i < 5; i++){ cin ...
2023-01-20
0
396
题解 | #数字之和#
#include <iostream> using namespace std; int normalSum(int n){ int sum = 0; while(n > 0){ sum += n % 10; n = n /10; ...
2023-01-19
1
303
首页
上一页
1
2
3
下一页
末页