flyflyfly00
flyflyfly00
全部文章
题解
CCF(6)
Codeforces(3)
TJU-OJ(29)
一些总结(9)
力扣LeetCode(1)
洛谷luogu(6)
归档
标签
去牛客网
登录
/
注册
flyflyfly00的博客
全部文章
/ 题解
(共52篇)
子串计算
这里使用了map,注意怎么遍历。 #include <iostream> #include <string> #include <algorithm> #include <map> using namespace std; int main(){ ...
2021-03-21
0
580
字符串排序
注意string是怎么排序的。sort(s.begin(), s.end()); #include <iostream> #include <string> #include <algorithm> using namespace std; int main(...
2021-03-21
1
537
火星A+B
自己写的方法。 #include <iostream> #include <cstdio> #include <vector> #include <stack> using namespace std; int prime[25]; void g...
2021-03-21
0
703
Powerful Calculator
关键是找到按数据计算的方法,特别是乘法,我自己想的就是按正常的乘法计算,比较复杂,给出的方法是先算出所有乘法的结果再进位,不容易出错。另外要注意输出时,可能会有0开头的结果,要记得跳过开头的0。 #include <iostream> #include <math.h> #i...
2021-03-21
0
572
P89 又一版A+B
使用unsigned int,不需要使用string记录和。注意do while 和while的区别。这里使用while不能通过测试。 #include <iostream> #include <string.h> #include <stdio.h> usin...
2021-03-13
0
549
P75 括号匹配问题
输出一样,但是没有找到提交网站,未进行测试。 #include <iostream> #include <cstdio> #include <stack> using namespace std; int main(){ string s; i...
2021-03-06
0
531
P69 猫狗收容所
和书上写法不一样,输出的数是对的,但不确定能否通过测试。 #include <iostream> #include <cstdio> #include <algorithm> #include <queue> using namespace std;...
2021-03-06
0
1134
P12 叠框
#include <iostream> #include <cstdio> using namespace std; char matrix[80][80]; int main(){ int n; char a,b; bool firsrcas...
2021-03-06
0
516
P16 Repeater
#include<iostream> #include<cstdio> #include<math.h> #include<string> using namespace std; char templat [6][6]; //初始模版: char...
2021-03-06
4
765
P57 Oulipo
#include <iostream> #include <cstdio> #include <algorithm> #include <string> using namespace std; int text[1000000], pattern...
2021-03-06
0
442
首页
上一页
1
2
3
4
5
6
下一页
末页