健康快乐最重要
健康快乐最重要
全部文章
题解
linux(1)
操作系统(3)
未归档(1)
机器人(2)
计算机机试(7)
计算机视觉(15)
递归(1)
归档
标签
去牛客网
登录
/
注册
健康快乐最重要的博客
mywgo!go!go!
全部文章
/ 题解
(共85篇)
贪心
简单贪心 #include<iostream> using namespace std; int main() { int a; while(cin>>a) { if(a%2!=0) printf("0 0\n"...
2020-02-08
0
629
大数除法
大数除法的改编版,大数求余 #include<iostream> #include<string> #include<algorithm> using namespace std; //本题是大整数除法 int divideString(string a,int ...
2020-02-08
8
903
大数模板
#include<iostream> #include<string> #include<algorithm> using namespace std; //此题类似于快速幂和大数乘法,大数加法的结合 //大数加法 string addString(stri...
2020-02-08
4
849
大数阶乘
大数乘法和大数加法,按照乘法和加法的运算对字符串进行运算就可以了,可以把代码记下来当成板子用。这样下次写时候直接用就行了。 #include<iostream> #include<string> #include<algorithm> using namespac...
2020-02-08
41
1517
大数加法
考察的大数加法,王道书上说是高精度整数没有采用他给的板子,直接用字符串按照规则进行加法运算。 #include<iostream> #include<string> #include<algorithm> using namespace std; string a...
2020-02-08
22
1093
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页