luo想要个气球
luo想要个气球
全部文章
分类
未归档(1)
题解(58)
归档
标签
去牛客网
登录
/
注册
luo想要个气球的博客
TA的专栏
27篇文章
0人订阅
每日一题
27篇文章
984人学习
全部文章
(共59篇)
【每日一题】小A的最短路
来自专栏
题意: 思路: #include <cstdio> #include <algorithm> #include <cstring> using namespace std; const int N = 3e5 + 10; struct Edge{ in...
2020-08-02
0
588
【每日一题】涂色PAINT
来自专栏
题意: 思路: #include <cstdio> #include <algorithm> #include <cstring> using namespace std; const int N = 55; char s[N]; int f[N][N]; i...
2020-08-02
0
601
【每日一题】乌龟棋
来自专栏
题意: 思路: #include <cstdio> #include <algorithm> using namespace std; const int M = 45; const int N = 355; int dp[M][M][M][M]; int w[N]; i...
2020-07-24
0
839
【每日一题】区间权值
来自专栏
题意 思路: .............. .... #include <cstdio> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int N = 3e5 + 10; int n...
2020-07-20
2
743
【每日一题】着色方案
来自专栏
题意: 思路: #include <cstdio> #include <cstring> using namespace std; typedef long long ll; const int N = 16; const ll mod = 1e9 + 7; int f...
2020-07-19
0
577
【每日一题】矩阵取数游戏
来自专栏
题意: 思路: #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> using namespace std; const int M = 10...
2020-07-16
0
984
【每日一题】点权和
来自专栏
题意: 思路: 首先感谢 a^-^a 大佬,我是看了他的博客,思路和注释都很清晰他的博客 #include <cstdio> using namespace std; typedef long long ll; const int N = 1e5 + 10; const int mo...
2020-07-16
0
598
牛客多校第一场-J.Easy Integration
题意: 思路: #include <cstdio> using namespace std; typedef long long ll; const ll mod = 998244353; const int N = 2e6+1; ll fac[N + 10],facInv[N + ...
2020-07-12
4
772
【每日一题】字符串
题意: #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int inf = 0x3f3f3f3f; const int N = 30; co...
2020-06-21
0
594
【每日一题】Supermarket
题意: 思路: #include <cstdio> #include <queue> #include <algorithm> #include <iostream> using namespace std; const int N = 1e4 +...
2020-06-21
0
670
首页
上一页
1
2
3
4
5
6
下一页
末页