Luogu P5960 【模板】差分约束算法 差分约束模板题。 #include<bits/stdc++.h> using namespace std; #define N 1000005 int first[N], Next[N], to[N], w[N], tot; int dis[N], vi ...
分类:
其他好文 时间:
2021-06-28 19:53:48
阅读次数:
0
代码演示 没什么可说的直接看代码 <?php namespace app\controller; class Category { //模拟假数据 protected static function arr() { $rows = [ [ 'id' => '1', 'name' => '一级菜单', ...
分类:
Web程序 时间:
2021-06-28 19:52:45
阅读次数:
0
Luogu P4926 [1007]倍杀测量者 取对数化除为减。 或者用乘积最短路。 注意图不一定连通。 #include<bits/stdc++.h> using namespace std; #define N 1000005 const double eps = 1e-12; struct g ...
分类:
其他好文 时间:
2021-06-28 19:51:46
阅读次数:
0
命名空间基础使用实例 /Huyongjian/Controller/User.php <?php namespace Huyongjian\Controller; class User{ public function show(){ echo __METHOD__; } } /Huyongjian ...
分类:
其他好文 时间:
2021-06-28 19:49:04
阅读次数:
0
来源:https://segmentfault.com/a/1190000009369566 这篇文章我们开始讲 laravel 框架中的门面 Facade,什么是门面呢?官方文档: Facades(读音:/f??säd/ )为应用程序的服务容器中可用的类提供了一个「静态」接口。Laravel 自带 ...
分类:
其他好文 时间:
2021-06-28 19:47:58
阅读次数:
0
sql语句更新xml基本写法 <mapper namespace="com.keyou.dao.samSystem.SamApplyDao"> <update id="updateRejectSamApply"> UPDATE SAM_APPLY <trim prefix="set" suffixO ...
分类:
数据库 时间:
2021-06-28 19:45:46
阅读次数:
0
发现自己的基础太不牢固了 #include<bits/stdc++.h> using namespace std; int cnt=0; int dfs(int x) { if(x>=100)return x; dfs(x+1); dfs(x+2); } int main() { cout<<dfs ...
分类:
其他好文 时间:
2021-06-28 19:03:09
阅读次数:
0
原因: mysql数据库的时区设置错误 解决办法: ①.Win+R 输入cmd 打开控制台 ②.打开数据库, 输入: mysql -uroot -p ③.查看数据库是否设置时区 show variables like '%time_zone%'; mysql> show variables like ...
分类:
数据库 时间:
2021-06-28 18:57:02
阅读次数:
0
set内是一颗红黑树,好像我以后也是要学的 注意set是会自动排序的,但是你根本找不到每一个数的排名 因为,set没这个功能,开一个数组记录一下就好了 所以我们现在有这么几个函数 #include<bits/stdc++.h> using namespace std; #define re regi ...
分类:
其他好文 时间:
2021-06-28 18:30:07
阅读次数:
0
4次FFT 1.21s #include<bits/stdc++.h> using namespace std; #define forg(i,x) for(register int i=fir[x];i;i=nxt[i]) #define uu unsigned #define scanf a14 ...
分类:
其他好文 时间:
2021-06-28 17:47:57
阅读次数:
0