/* Name: Copyright: Author: Mudrobot Date: <DATETIME> Description: */ #include<bits/stdc++.h> #define gc() getchar()//caution!!! #define LL long long ...
分类:
其他好文 时间:
2020-07-17 14:04:00
阅读次数:
107
昨天突然脑袋比较清醒,好像似乎以前没有搞太懂的可持久化线段树一下子就搞懂了,结果打了几遍还是出现了一些意想不到的问题,下面我就来整理一下,防止以后重蹈覆辙! 下面我放一个50分的代码: #include<bits/stdc++.h> #define LL long long using namesp ...
分类:
其他好文 时间:
2020-07-17 13:57:31
阅读次数:
57
这道题我还有一些奇怪的地方没有搞懂,这里我先放一篇代码吧! 代码如下: #include<bits/stdc++.h> #define LL long long #define MX 4200 #define MOD 100000000 using namespace std; LL dp[13][ ...
分类:
其他好文 时间:
2020-07-17 13:54:28
阅读次数:
67
链接地址:指针步长——例题理解 一、例题 下面程序的执行结果: class A{ public: long a; }; class B : public A { public: long b; }; void seta(A* data, int idx) { data[idx].a = 2; } i ...
分类:
编程语言 时间:
2020-07-17 13:45:55
阅读次数:
71
采用分治思想 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; double a,b,c,d; double f(double x) { return ...
分类:
其他好文 时间:
2020-07-17 13:39:43
阅读次数:
71
一写jwt的配置类 public class JwtUtils { //定义两个常量 public static final long EXPIRE = 1000 * 60 * 60 * 24; //设置token过期时间 public static final String APP_SECRET ...
分类:
其他好文 时间:
2020-07-16 21:52:50
阅读次数:
76
LuoguP4279 [SHOI2008]小约翰的游戏 题目描述 链接 Solution Anti-SG的模板题 这里就直接放代码 #include<bits/stdc++.h> using namespace std; inline long long read() { long long f = ...
分类:
其他好文 时间:
2020-07-16 21:44:29
阅读次数:
72
一、pom文件引入所需jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <depende ...
分类:
编程语言 时间:
2020-07-16 21:12:01
阅读次数:
79
D. TediousLee 题意 定义 n 级的 RDB 树。 n 级的 RDB 树,由 n-1 级的 RDB树,经如下转变得来: 如果某个节点没有子节点,那么为其增加一个节点 如果某个节点有两个子节点,那么为其增加两个子节点 其他不用管 定义爪形图案如下: 初始一个 n 级树都是绿色的,现在你可以 ...
分类:
其他好文 时间:
2020-07-16 21:09:56
阅读次数:
362
DataRow [] dr=pageSet.PageSet.Tables[0].Select("TradeType='存款'"); StoreGold = dr.Sum<DataRow>(r => (long)r["transScore"]); DrawGold = pageSet.PageSet. ...
分类:
其他好文 时间:
2020-07-16 12:25:06
阅读次数:
94