立志实干
立志实干
全部文章
分类
无链接题解(1)
题解(49)
归档
标签
去牛客网
登录
/
注册
立志实干的博客
全部文章
(共56篇)
例题4.6 Number Sequence(GitHub上代码)
#include<iostream> #include<algorithm> #include<string> using namespace std; const int MAXN = 1000000; const int MAXM = 10000; int...
王道机试
D
第四章
吐血
2021-04-14
0
463
例题4.7 Oulipo(string从0开始)(大致按照书上默写,但运行超时) 建议重做3次,|||
#include <iostream> #include <cstdio> #include <string> using namespace std; const int MAXW = 10000; // const int MAXT = 1000000; ...
王道机试
D
第四章
吐血
2021-04-14
0
453
例题4.6 Number Sequence(书上默写,但在网站上运行超时)建议重做3次,|||
/* 分三步,主函数,kmp,求next数组 主函数就是输入输出 书上的代码默写 求next数组太恶心!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ #include <iostream> #include <cstdio> usi...
王道机试
D
例题
第四章
2021-04-13
0
456
二进制数2021.04.05
#include <iostream> #include <cstdio> #include <stack> using namespace std; stack<int> mystack; int main(){ int n; ...
王道机试
E
例题
第六章
2021-04-05
0
563
3278 Catch That Cow 例9.1(做法1):闭门造车
Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a numb...
王道机试
第九章
例题
M
吐血
2021-03-06
0
482
Fibonacci(分治)例8.3
/* 模板 分治用递归思想的模板 调用函数!!!!! */ #include <iostream> #include <cstdio> using namespace std; int Fibonacci(int n){ if(n==0){ ret...
模板
王道机试
例题
第八章
M
2021-03-06
0
531
n的阶乘(递归模板)例8.1
/* 学会计算复杂度,20!=2*10^18,int 20*10^8,long 9*10^18 Factorial,递归:调用自身,递归出口 递归模板 */ //使用递归函数 #include <iostream> #include <cstdio> using nam...
王道机试
模板
例题
第八章
M
2021-03-06
1
721
今年暑假不AC(2037)例题7.4
http://acm.hdu.edu.cn/showproblem.php?pid=2037 /* 该题难在,想到,如何看尽可能多的完整节目的方案。如何找到最佳方案的步骤。程序也就是代码并不难。 */ #include <iostream> #include <cstdio>...
第七章
王道机试
D
例题
2021-03-06
0
528
鸡兔同笼(例题7.1)
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; int m,t;//m最少,t最多 while(scanf("%d",&n)!=EO...
第七章
王道机试
E
例题
2021-03-06
0
514
1978:扩号匹配问题(做法1:闭门造车,做法2:作者代码)
做法1:闭门造车 #include <iostream> #include <cstdio> #include <string> #include <stack> using namespace std; const int MAXSIZE=100...
第五章
王道机试
E
例题
2021-03-06
0
593
首页
上一页
1
2
3
4
5
6
下一页
末页