立志实干
立志实干
全部文章
题解
无链接题解(1)
归档
标签
去牛客网
登录
/
注册
立志实干的博客
全部文章
/ 题解
(共48篇)
题解 | #Old Bill#(小螃蟹C版本)
#include<stdio.h> main() { int n,x,y,z; while(scanf("%d %d %d %d",&n,&x,&y,&z)!=EOF) { int k,d,e; k...
习题
王道机试
第二章
M
2021-05-07
0
478
题解 | #Old Bill#(挑错)
#include<stdio.h> main() { int n,x,y,z,a,b,c,k=0,d,e; scanf("%d\n %d %d %d",&n,&x,&y,&z); for(a=1;a<10;a++) {...
习题
王道机试
第二章
M
2021-05-07
0
496
题解 | #Old Bill#(小螃蟹版本)
#include <iostream> #include <cstdio> using namespace std; int main() { int n,x,y,z; while(scanf("%d %d %d %d",&n,&x,&am...
习题
王道机试
第二章
M
2021-05-07
0
438
题解 | #Old Bill#(带函数)
#include <iostream> #include <cstdio> using namespace std; void bill(int n,int x,int y,int z) { int test; int c=0; for(int ...
习题
王道机试
M
第二章
2021-05-07
0
504
例题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
464
例题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
473
Fibonacci(分治)例8.3
/* 模板 分治用递归思想的模板 调用函数!!!!! */ #include <iostream> #include <cstdio> using namespace std; int Fibonacci(int n){ if(n==0){ ret...
模板
王道机试
例题
第八章
M
2021-03-06
0
514
首页
上一页
1
2
3
4
5
下一页
末页