flyflyfly00
flyflyfly00
全部文章
分类
CCF(6)
Codeforces(3)
TJU-OJ(29)
一些总结(9)
力扣LeetCode(1)
洛谷luogu(6)
题解(52)
归档
标签
去牛客网
登录
/
注册
flyflyfly00的博客
全部文章
(共106篇)
P143 Find The Multiple
按下面这种书上的写***超时。 #include <iostream> #include <cstdio> #include <queue> using namespace std; void BFS(int n){ queue<long lon...
2021-03-29
1
484
P140 Catch That Cow
深度优先搜索,队列 #include <iostream> #include <cstdio> #include <cstring> #include <queue> using namespace std; const int MAXN = 10...
2021-03-29
0
430
P135 全排列
递归方法,参考 https://blog.csdn.net/nicolelts/article/details/48661707 #include <iostream> #include <algorithm> using namespace std; void perm...
2021-03-28
0
535
P135 杨辉三角形
常规写法,非递归。这里测试要从第二行开始输出。 #include <iostream> using namespace std; int Triangle[1000][1000]; void getAngle(int n){ Triangle[1][1] = 1; ...
2021-03-28
0
461
P133 汉诺塔IV
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int getG(int n){ if(n == 1){ return 2;...
2021-03-28
0
438
P133 汉诺塔II(四柱问题)
#include <iostream> #include <cstdio> #include <algorithm> #include <math.h> using namespace std; const int INF = 1e9; int ...
2021-03-28
0
433
P133 汉诺塔III
找到次数之间的规律。 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; long long func(int n){ if(n == 1){ ...
2021-03-28
0
461
P133 经典汉诺塔
参考博客 https://blog.csdn.net/liujian20150808/article/details/50793101 int i; //记录步数 //i表示进行到的步数,将编号为n的盘子由from柱移动到to柱(目标柱) void move(int n,char from,c...
2021-03-28
0
470
P124 今年暑假不AC
按照结束时间从早到晚看,要是当前时间小于开始时间,则可以看。每次看完时间变为结束时间。 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; struct...
2021-03-26
0
405
P122 Senior's Gun
注意循环跳出的条件。 #include <iostream> #include <cstdio> #include <algorithm> #define MAX 100001 using namespace std; long long gum[MAX], ...
2021-03-26
0
550
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页