flyflyfly00
flyflyfly00
全部文章
题解
CCF(6)
Codeforces(3)
TJU-OJ(29)
一些总结(9)
力扣LeetCode(1)
洛谷luogu(6)
归档
标签
去牛客网
登录
/
注册
flyflyfly00的博客
全部文章
/ 题解
(共52篇)
P133 汉诺塔IV
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int getG(int n){ if(n == 1){ return 2;...
2021-03-28
0
441
P133 汉诺塔II(四柱问题)
#include <iostream> #include <cstdio> #include <algorithm> #include <math.h> using namespace std; const int INF = 1e9; int ...
2021-03-28
0
439
P133 汉诺塔III
找到次数之间的规律。 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; long long func(int n){ if(n == 1){ ...
2021-03-28
0
451
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
475
P124 今年暑假不AC
按照结束时间从早到晚看,要是当前时间小于开始时间,则可以看。每次看完时间变为结束时间。 #include <iostream> #include <cstdio> #include <algorithm> using namespace std; struct...
2021-03-26
0
407
P122 Senior's Gun
注意循环跳出的条件。 #include <iostream> #include <cstdio> #include <algorithm> #define MAX 100001 using namespace std; long long gum[MAX], ...
2021-03-26
0
554
P119 FatMouse' Trade
#include <iostream> #include <cstdio> #include <algorithm> #define MAX 1000 using namespace std; struct Room{ int j; int...
2021-03-25
0
573
P106 高精度整数部分
大数模板 #include<bits/stdc++.h> #define deb(x) cerr<<#x<<" = "<<(x)<<'\n'; using namespace std; typedef long long ll; //大整...
2021-03-25
1
582
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
578
首页
上一页
1
2
3
4
5
6
下一页
末页