flyflyfly00
flyflyfly00
全部文章
分类
CCF(6)
Codeforces(3)
TJU-OJ(29)
一些总结(9)
力扣LeetCode(1)
洛谷luogu(6)
题解(52)
归档
标签
去牛客网
登录
/
注册
flyflyfly00的博客
全部文章
(共106篇)
P119 FatMouse' Trade
#include <iostream> #include <cstdio> #include <algorithm> #define MAX 1000 using namespace std; struct Room{ int j; int...
2021-03-25
0
569
P106 高精度整数部分
大数模板 #include<bits/stdc++.h> #define deb(x) cerr<<#x<<" = "<<(x)<<'\n'; using namespace std; typedef long long ll; //大整...
2021-03-25
1
572
P101 求root(N, k)
原本想这样模拟过程但是这样太复杂。需要思考别的方法~ #include <iostream> #include <cstdio> #include <vector> using namespace std; bool Judge(vector<int&g...
2021-03-23
1
656
P100 人见人爱A^B
利用了快速幂方法。 #include <iostream> #include <string> #include <cstdio> using namespace std; int fun(int a, int b, int mod){ int ans...
2021-03-22
0
557
子串计算
这里使用了map,注意怎么遍历。 #include <iostream> #include <string> #include <algorithm> #include <map> using namespace std; int main(){ ...
2021-03-21
0
587
字符串排序
注意string是怎么排序的。sort(s.begin(), s.end()); #include <iostream> #include <string> #include <algorithm> using namespace std; int main(...
2021-03-21
1
534
火星A+B
自己写的方法。 #include <iostream> #include <cstdio> #include <vector> #include <stack> using namespace std; int prime[25]; void g...
2021-03-21
0
697
Powerful Calculator
关键是找到按数据计算的方法,特别是乘法,我自己想的就是按正常的乘法计算,比较复杂,给出的方法是先算出所有乘法的结果再进位,不容易出错。另外要注意输出时,可能会有0开头的结果,要记得跳过开头的0。 #include <iostream> #include <math.h> #i...
2021-03-21
0
578
P89 又一版A+B
使用unsigned int,不需要使用string记录和。注意do while 和while的区别。这里使用while不能通过测试。 #include <iostream> #include <string.h> #include <stdio.h> usin...
2021-03-13
0
548
P75 括号匹配问题
输出一样,但是没有找到提交网站,未进行测试。 #include <iostream> #include <cstdio> #include <stack> using namespace std; int main(){ string s; i...
2021-03-06
0
521
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页