E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
TOT
Spring学习笔记4——Profile配置
这一个地方属于新知识,之前没有接触过,
TOT
的时候做的小项目也是用的springboot.yml文件直接配置数据库环境的。
不识字的朔
·
2020-09-12 06:04
Spring
java
二分图最大匹配 匈牙利算法模板题
endl<
tot
flyzer
·
2020-09-12 05:55
Codeforces Round 599 (Div. 1+2)___E. Sum Balance —— 子集状压DP
所有数互不相同从每组数拿出一个放到自己或其他的组要求最后每组数的个数与原来的相同并且每组数的和相同解题思路:设tottottot为每组数最后的和,则枚举每一组数的每一个值a[i][j]a[i][j]a[i][j]若将这个数字拿出,则这组数字需要补上
tot
Scar_Halo
·
2020-09-12 05:42
ACM
-
状压DP
Codeforces
Round
599
(Div.
1+2)
E.
Sum
Balance
子集状压DP
【网络流24题】搭配飞行员(最大流+二分图匹配)
include#include#includeusingnamespacestd;constintsm=105,sn=sm*sm+200;constintInf=0x3f3f3f3f;intS,T;intM,N,
tot
Etta19
·
2020-09-12 05:41
网络流
最大流
Atcoder Grand Contest 012 B - Splatter Painting解题报告
contest.atcoder.jp/tasks/agc012_b有一个n点m边的图,(不一定联通)还有q个操作:每次将一个点v及其周围距离#defineN200100intn,m,q,i,dep[N],col[N],
tot
hz_826
·
2020-09-12 04:18
解题报告
HDU2433 Travel 最短路径树
include#include#defineN120#defineM12000usingnamespacestd;intn,m,tmp;intfa[N][N];intfir[N],nes[M],v[M],
tot
Todobe
·
2020-09-11 23:52
最短路径树
[Leetcode新题] Maximum Gap
classSolution{public:intmaximumGap(vector&num){intsize=num.size(),max_gap=0;intmax_total,min_
tot
jackycmu
·
2020-09-11 20:06
算法分析
面试准备
黑骑士
Code:#include#include#include#defineD(x)coutn){res=(res*2+
tot
)%mod;
tot
FuTaimeng
·
2020-09-11 19:55
缩点
树形dp
POJ - 1321棋盘问题(DFS)
n#includeintn,
tot
,k,book[20];
剑断青丝i
·
2020-09-11 13:11
深搜
广搜
Hive导出数据到本地
hive-S-e"select*fromdefault.ts_plc_
tot
_w_kpi_people_prefertreatment_dwherepday='20191218'">>/home
你锋哥真的强
·
2020-09-11 02:16
字典树--查询前缀出现次数
TheRoadToTheGold/p/6290732.html#include#include#include#includeusingnamespacestd;inttrie[400001][26],len,root,
tot
Shakespearer
·
2020-09-11 00:19
字典树 —— 模板习题
模板:structTrie{staticconstintmaxt=1e7+5;intrt,id,
tot
,t[maxt][2];intcnt[maxt],val[maxt],end[maxt];inlineintnewnode
Scar_Halo
·
2020-09-11 00:47
ACM
-
字典树
HDU1251——统计难题【字典树】
#include#includeusingnamespacestd;constintSIZE=2e6+5;inttrie[SIZE][30];chars[15],t[15];intcnt[SIZE],
tot
AC-xiang
·
2020-09-10 23:25
字典树(Trie)
字符串
[Usaco2008 Jan]Cow Contest奶牛的比赛题解 Floyed最短路题
FJ的N(1usingnamespacestd;constintINF=0x7fff;intn,m,cowa,cowb,cost[101][101],
tot
=0;intmain(){scanf("%d%
_Destiny__Fate_(DLS)
·
2020-09-10 20:19
floyed最短路
深度优先搜索-全排列问题
tot
=0#arr为元素数组,n为元素个数,vis为目标存储数组defperm(arr,n,vis):iflen(vis)==n:globaltottot+=1print(vis)#return#剪枝,
tensory.online
·
2020-09-10 17:43
算法OJ
用数组模拟双向链表
需要一个pre[]和一个next[]一开始指向-1表示没有前值没有后值大小确定然后用一个val[]数组来存相当与一个节点里面的值一个
tot
值插入新的节点就+1在中间插入新节点只要修改pre和next的值
pucca
·
2020-09-10 15:18
algorithm
计数原理
某人去商店买东西,去了
tot
次。每次带di枚ci硬币,买si的价值的东西。问每次有多少种付款方案。
徐行tag
·
2020-09-10 14:08
学习历程
数学
数论
solidity定长数组和动态数组
/通过for循环计算数组值的总和functionsum()publicviewreturns(uint){uinttotal=0;for(uinti=0;i
tot
chunxie2315
·
2020-09-10 13:21
ipv4和tcp报头数据格式
4;#elifdefined(__BIG_ENDIAN_BITFIELD)__u8version:4,ihl:4;#else#error“Pleasefix”#endif__u8tos;__be16-
tot
_len
jiangyi711
·
2020-09-10 10:42
网络基础
自动装箱与拆箱
htmlIntegertotal=99;//反编译后,实际代码:Integertotal=Integer.valueOf(99);,自动装箱:.valueOf()inttotalprim=total;//inttotalprim=
tot
小小書童可笑可笑
·
2020-09-01 11:07
今日份壁纸 |
Tot
ême (8.28)
小程序:我的衣橱我的美妆间公众号图片会压缩要原图的宝宝们可以加我微信↓↓↓
FashionWeek
·
2020-08-28 00:00
Cover
据说有孤立的点;链式前向星的
tot
从1开始,并且第一条边的编号从2开始,,,,为了好计算边的序号(1~m)。总之还是有编程技巧的。
weixin_30512785
·
2020-08-26 23:40
字典树的数组实现 理解 + 类模板
模板classTrie{public:staticconstintMAXN=2e6+10;inttr[MAXN][30],sum[MAXN],
tot
=0;voidinsert(char*s){registerintlen
就是爱吃肉ro
·
2020-08-26 15:57
#
字符串
Tot
-3收服光学博士
自上回奇异博士明白光学博士的魔术之后。就一直配合。最终他与异眼,利用太阳光的反射收服了光学博士。一开始光学博士很不情愿。但是最后。光学博士还是答应奇异博士一起拯救世界。就这样正义三人组开始了保卫地球的使命。第三集完。
长安赵公子
·
2020-08-26 00:49
【周计划】20161027
抛开一切外界因素,还是承认自己不管是面试准备还是知识储备方面的确有很多地方做得远远不够,到秋招快结束了才发现连常用的app分析都没准备好
ToT
看样子是去不了远方啦,注定就是要留在杭州~~~好吧,痛定思痛
828815e40fc4
·
2020-08-25 17:34
[搜索算法系列] —— 折半搜索
defdfs(cur,total,status=set()):foriinrange(cur,n):iftotal+w[i]>m:continuestatus.add(total+w[i])dfs(i+1,
tot
砖王
·
2020-08-25 16:45
算法
P1041 传染病控制
P1041#includeusingnamespacestd;#defineintlonglong#definesc(x)scanf("%lld",&x);constintmaxn=1000;intn,m,
tot
asmallfish1985
·
2020-08-25 16:37
PAT 1034.Head of a Gang
图里面会有环,可能两个访问过的节点中间也会有边,所以需要下面不同于寻常的bfs,加入了下面这段代码:for(inti=1;i0&&visit[i]==0){wei_
tot
+=aj[tmp
景天的天
·
2020-08-25 09:50
PAT
Closest Distance LightOJ - 1146
故可以用三分法来做.由两人匀速且同时出发,同时到达可得,两人在等比例地行走.故可以通过精确两人的位置来求最短距离代码#include#definedbdoubleusingnamespacestd;intT,TT,
tot
yzyyylx
·
2020-08-25 06:25
技巧
经典
bzoj-3261 最大异或和
的异或值最大;n,m#include#include#defineN610000usingnamespacestd;structnode{intnext[2],sum;}a[N*30];introot[N],
tot
ww140142
·
2020-08-25 05:20
bzoj
数据结构
OIer刷题记录
mysql5.6和mysql5.7,X在group by上的区别
首先:表聚合语句:mysql>selectcountry,SUM(fee)astotfrommembergroupbycountry;+---------+-------+|country|
tot
|+-
小跑跑泡
·
2020-08-25 05:27
mysql
P1118 数字三角形(技巧)
#include#includeusingnamespacestd;intn,sum,a[124];intyh[20][20];boolf[20];voiddfs(intk,inttot){//if(
tot
weixin_34292287
·
2020-08-25 05:07
自定义进度条PictureProgressBar——从开发到开源发布全过程
https://bintray.com/yanzhikaijky/CustomViewRepository/PictureProgressbar/本项目GitHub地址:https://github.com/
tot
炎之铠
·
2020-08-25 04:58
Android笔记
【模板】求无向图中所有的割点&点双连通分量&缩点
=root||flag>1)cut[u]=true;}}elselow[u]=min(low[u],dfn[v]);}}intmain(){scanf("%d%d",&n,&m);
tot
=1;intu,
不进清北不改名
·
2020-08-25 04:20
模板
【2017省中集训DAY1T1】 小X的质数
这个数除以它的最小质因子是一个质数所以我们可以用线性筛+前缀和的方式预处理,询问的时候O(1)计算就可以了【代码】#includeusingnamespacestd;constintMAXN=1e7+5;intQ,l,r,i,j,tmp,
tot
even_bao
·
2020-08-25 03:40
数学
线性筛
Codeforces Round #641 (Div. 2) Solution (F学了生成函数再回来淦)
的最小质因数f(n)为n的最小质因数f(n)为n的最小质因数,重复t次如下操作:n+=f(n);输出最终答案显然f(n)+nf(n)+nf(n)+n一定为偶数,所以后面都是+2.intn,T,prime[N],
tot
zsyzlzy
·
2020-08-25 02:40
比赛
bzoj1588[HNOI2002]营业额统计
#defineMAXN500010#defineINF0x7fffffffstructnode{intch[2],f,v;}tr[MAXN];inta,tmp,x1,x2,ans;intn,root,
tot
zz_ylolita
·
2020-08-25 00:41
bzoj
数据结构
splay
【AC自动机】【例题】AC自动机
#include#definexs[i]-'a'usingnamespacestd;constintN=1e6+10;intT;intn;intans[155];intt[60005][30],
tot
;
ygmjsjdboy
·
2020-08-25 00:44
#
AC
并查集_hash_HDU_1856
constintmaxn=100005;structnode{intid,ha,next;};nodee[maxn];intpar[maxn],rot[maxn],num[maxn];inth[maxn],
tot
梦里江山
·
2020-08-25 00:20
ACM水题刷耍
回文自动机模板
回文自动机每个节点代表了一个回文串能求出来的有:1本质不同的回文串的个数(
tot
-1)2每种回文串出现的次数(cnt数组)3每种回文串的长度(len数组)4以当前节点为后缀的回文串个数(sed数组)5每个回文串在原串出现的位置
brav0
·
2020-08-24 23:29
字符串-回文自动机
oracle 几个脚本记录
--*****************查看表空间大小*****************SELECTUPPER(F.TABLESPACE_NAME)"表空间名",D.
TOT
_GROOTTE_MB"表空间大小
常语
·
2020-08-24 23:18
NOIP模板大全(转)
NOIP模板1数据结构1.1线段树#include#includeusingnamespacestd;constintN=1e5;intn,m,
tot
,root;structTree{intl,r,ls
qq_36911709
·
2020-08-24 22:50
字典树,字典树+dfs,(数组实现),两个例题
添加操作:constintmaxn=50000+500;inttrie[maxn][30],
tot
=
贾半仙儿
·
2020-08-24 22:38
题解
算法学习
【AC自动机+DP】匹配(match)
definefo(i,a,b)for(inti=a;i<=b;i++)usingnamespacestd;constintmaxn=105;constintP=1000000007;intN,M,K,len,
tot
hedongnike
·
2020-08-24 22:57
DP和优化
字符串
树形DP poj1741
问两个点之间的dist(u,v)#include#include#include#includeusingnamespacestd;constintmaxn=1e5+10,inf=1e9;intk,ans,
tot
as604412059
·
2020-08-24 21:45
树形dp
【模板】字符串哈希
includeusingnamespacestd;constintmaxn=1e6+10;constintbase=131;chars1[maxn],s2[maxn];unsignedlonglongpower[maxn],
tot
K1385170
·
2020-08-24 21:21
|poj 2752|KMP|Seek the Name, Seek the Fame
includeusingnamespacestd;#definems(i,j)memset(i,j,sizeofi);constintMAXN=400000+5;chars[MAXN];intf[MAXN],n,ans[MAXN],
tot
NotFound1
·
2020-08-24 21:00
Poj/Hdu
字符串
-
KMP
[USACO10FEB]慢下来Slowing down(线段树+dfs序)
题目传送门题解这道题还是比较好的;我们先考虑树形成一条链的情况,那就成了单点修改区间查询操作,都是线段树的基本操作;那么我们就使用dfs序的方法,把它变成一条链,那么某棵子树的区间就是dfn[i]+
tot
A_Comme_Amour
·
2020-08-24 19:23
线段树
dfs序
HDU - 2553 N皇后问题
#includeinttot=0,row,line[10],n;voidsearch(introw)//递归搜索可行解{inti,j;if(row==n)
tot
++;//当row=n时,说明每一行的皇后都不冲突
苏摩夜
·
2020-08-24 18:26
第
7
章
暴力求解法
js对比两个数组 (根据arrayA的元素,在arrayB中进行查找)
如果有找到记录就添加进去,没有就添加{key:'a',num1:'0',num2:'0',num3:'0',
tot
':0'}。
esc95
·
2020-08-24 17:02
数组方法
上一页
4
5
6
7
8
9
10
11
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他