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
structe
1529: [POI2005]ska Piggy banks(SCC)
代码:#include#include#includeusingnamespacestd;#defineMAXN1000100
structe
AmadeusChan
·
2023-12-28 03:04
结构体数组的应用
#include#include#defineMAX_EMPLOYEES10structEmployee{charname[50];intemp_id;};voidinputEmployeeInfo(
structE
藏原走xwq
·
2023-12-18 06:51
算法
单源最短路径--Dijkstra算法
代码//节点之间不仅有距离还有花费,输出距离最短并且花费最少的路径#include#includeusingnamespacestd;
structE
{intnext;intd;i
jindayue
·
2023-10-26 06:50
[洛谷]P2313 [HNOI2005] 汤姆的游戏(模拟)
1:思路:一看Nusingnamespacestd;#defineintlonglongconstintN=5e2+10;
structE
{doublex1,y1,x2,y2,r;charc;}e[N];
gentle coder
·
2023-10-04 22:35
游戏
算法
数据结构
c++
模拟
zoj 1586
include#include#defineMAX1010#defineINF0x3f3f3f3fusingnamespacestd;intn;intlink[MAX];intmap[MAX][MAX];
structE
Ten_moon
·
2023-08-08 15:21
protobuf,c++进行嵌套消息的赋值
待改写的结构体:三层嵌套usingnamespacestd;namespaceA{namespaceB{namespaceC{namespaceD{
structE
2E{uint64CRC;uint32Length
乱搭巴士
·
2023-08-06 00:12
c++
开发语言
P1825 [USACO11OPEN] Corn Maze S(bfs)
然后将坐标转过去就好啦~if(mp[x][y]>='A'&&mp[x][y]usingnamespacestd;#defineintlonglongconstintN=310;structnode{intx,y;};
structE
gentle coder
·
2023-07-29 13:15
宽度优先
算法
P9011 [USACO23JAN] Air Cownditioning II B(差分优化+dfs)
思路:看到Nusingnamespacestd;#defineintlonglongconstintN=1e2+10;intb[N];
structE
{inta,b,p,w;}e[11];intn,m,mmin
gentle coder
·
2023-07-28 03:28
深度优先
算法
差分
[洛谷]P1525 [NOIP2010 提高组] 关押罪犯(并查集+图论)
#includeusingnamespacestd;constintN=2e4+10,M=1e5+20;
structE
{intu,v,
gentle coder
·
2023-07-18 14:59
图论
并查集
[洛谷]B3601 [图论与代数结构 201] 最短路问题_1(负权)(spfa)
defineintlonglong#defineinf2147483647constintN=15e3+10,M=2*N;intdis[N],head[N],cnt;boolvis[N];intn,m;
structE
gentle coder
·
2023-07-14 03:24
图论
算法
c++
热身赛zju2008:找旅馆_hdu1871
pid=18712008浙大研究生复试热身赛(2)——全真模拟#include#include#includeusingnamespacestd;
structE
{intno;intnum;intprice
zz91
·
2022-12-17 06:19
zju真题
acm
图的存储方式+并查集拓扑排序模板
图的几种存储方式_roadkiller.的博客-CSDN博客_图的存储方式1.邻接矩阵intmap[maxn][maxn];map[i][j]=w//表示第i个顶点到第j个顶点有权值为w的边2.邻接表
structe
skycol
·
2022-12-06 07:31
算法
图论
算法
c++
c语言
C语言实现会员计费系统
三、功能展示四、思维导图五、程序源码#include#include#include#include#defineN100
structe
·
2022-05-30 20:34
真好用-dijskra最短路
mlogn)structHeapNode//Dijkstra算法用到的优先队列的节点{intd,u;HeapNode(intd,intu):d(d),u(u){}booloperatorrhs.d;}};
structE
July_xunle
·
2020-09-16 07:02
日常吐槽
poj 3648
代码:#include#includeusingnamespacestd;
structe
{intdata;e*next;}edge[121],edge2[122];intn,m;intv[121],low
weixin_30790841
·
2020-09-16 00:50
[bzoj1083]繁忙的都市
1#include2#include3#include4#include5#include6usingnamespacestd;78constintN=10010;9
structE
{10intu,v,c
aoping9329
·
2020-09-14 03:24
DP(动态规划)背包问题
转移状态方程:dp[j]=max(dp[dp[j-list[i].w]+list[i].v,dp[j-1])#include#includeusingnamespacestd;
structE
{intw;
刘铸
·
2020-09-13 15:15
OJ算法题目
poj 3041 网络流做法 sap+gap
defineinf99999999usingnamespacestd;intcnt;intsource,N;intsink,ans;intc[4400];intH[20410];intd[4410];
structe
liruiiuril
·
2020-09-12 07:43
hdu
牛客网考研机试题集合:最短路径1
考点:单源最短路径#includeusingnamespacestd;constintMAXSIZE=101;
structE
{intnext;intd,p;E(intnext,intd,intp):next
聊赖
·
2020-09-11 20:47
牛客网考研机试题集合
【双连通分量模板】
constintN=10010;constintM=4000020;
structe
wust_wangzhi
·
2020-08-25 03:09
【模板集】-图论
[模板] - 网络流 - Dinic & 当前弧优化
函数:邻接表部分:constintINF=0x3f3f3f3f,maxn=157;intN,NP,NC,M;
structE
{intu,v,flow;E(intu=0,intv=0,intflow=0):
LucienShui
·
2020-08-25 00:56
模板
九度oj 题目1027:欧拉回路 【ZJU2008考研机试题2】
每个测试用例的第1行给出两个正整数,分别是节点数N(1intdegree[3000000],parent[10100],cnt,n;
structE
{inta
神州之光
·
2020-08-23 19:40
PAT
ZJU历年考研机试
BZOJ4034: [HAOI2015]树上操作(洛谷P3178)
include#include#defineN100005usingnamespacestd;typedeflonglongLL;structtree{intl,r;LLsum,tg;}t[N*4];
structe
forezxl
·
2020-08-23 01:05
BZOJ
洛谷
数据结构---树链剖分
蒟蒻zxl的Blog专栏
[luogu] P4017 最大食物链计数
#includeusingnamespacestd;intn,m,u,v,an,outdu[5555],head[5555],cnt,f[5555],indu[5555];
structe
{intnext
煜明
·
2020-08-18 18:10
算法
UVa10917 Walk Through the Forest
constintmaxn=1005,maxm=(maxn-1)*(maxn-2);constintINF=1e9;inta[maxn],d[maxn],h[maxn],cnt,n,m;boolvis[maxn];
structE
flaaaaaaame
·
2020-08-18 08:19
路径统计
UVa
最短路
hdu 4280
最大流ISAP,邻接表+GAP+当前弧优化//时间为3877ms#include#include#defineVM100010#defineEM400010constintinf=0x3f3f3f3f;
structE
SprintfWater
·
2020-08-18 08:08
网络流
poj2486 Apple Tree 树上分组背包
题目大意:求遍历k个几点权值和的最大值(n#include#includeusingnamespacestd;constintN=205;
structE
{intto,nxt;}edge[N*2];intdp
yxr0105
·
2020-08-18 07:11
poj
树形dp
背包
dp
洛谷1217 有线电视网 树上dp
for(intk=sz[x];k;k--)for(intj=1;j#include#definemaxn3005usingnamespacestd;
structE
{intto,nxt,d;}b[maxn
Loi_a
·
2020-08-17 20:06
===DP及优化===
DP
hdu3926 Hand in Hand 同构图
1#include2#include3#include4usingnamespacestd;56intpre[10100];7
structe
{8inta,b;9};10es1[10010];11es2[
weixin_30693683
·
2020-08-17 03:41
最短路径--Dijstra算法
每组数据第一行是两个整数N、M(N#includeusingnamespacestd;#defineN101
structE
{intnext;intco
walker lee
·
2020-08-16 06:06
九度OJ
Dijstra
最短路径
九度OJ
多重背包问题
#includeusingnamespacestd;
structE
{intw;//体积intv;//重量}lis[2001];intdp[101];intmain(){intT,n,m;intp,h,k
Combatting
·
2020-08-15 15:37
模板
动态规划
[TJOI2018]异或 树链剖分+可持久化Trie树
#includeusingnamespacestd;constintN=1e5+10;
structE
{intto,nxt;}data[Nmaxson)son[x]=y,maxson
Exception2017
·
2020-08-13 21:36
树链剖分
Trie/可持久化Trie
zoj 2404 最小费用流
include#include#include#include#include#definemaxn550#definemaxe100000#defineINF0x3f3f3fusingnamespacestd;
structE
weixin_30716141
·
2020-08-13 11:31
P2661(拓扑排序找最小环)
#include#includeusingnamespacestd;constintmaxn=400000;
structE
{intto,nxt;}edge[maxn];inthead[maxn],cnt
@Milly
·
2020-08-12 01:20
洛谷
邻接矩阵图的操作集
邻接矩阵操作//图structMgnode{intNv,Ne;weighttypeG[maxvertexnum][maxvertexnum];};typedefstructMgnode*Mgraph;//边
structe
photores1st
·
2020-08-11 03:45
数据结构
数据结构
算法
c++
图论
牛客OI周赛15-提高组 A 环球旅行-树的直径
题目链接:https://ac.nowcoder.com/acm/contest/4912/A#include#defineLLlonglongusingnamespacestd;
structE
{intto
H_ang
·
2020-08-11 03:13
树直径
树形dp
洛谷1080 国王游戏
转载自:高浩裕的博客本题地址:>here此处传送#include#includeusingnamespacestd;constint_maxn=10100;
structe
{longlonga,b,s;}
cytaz
·
2020-08-11 01:06
洛谷题解
链式向前星
下面是代码和图示:我们存储这张图,跑下面的代码:#includeusingnamespacestd;intcnt=0;inthead[1000];
structe
Rancho__
·
2020-08-10 20:07
STL
1003Emergency(25)
然后刘汝佳的模板在此奉上代码#include#include#include#includeusingnamespacestd;constintmaxn=500+5;constintINF=100000000;
structE
i_head_no_back
·
2020-08-10 16:49
1004. Counting Leaves (30)
用一个BFS搞定哈哈#include#include#include#includeusingnamespacestd;constintmaxn=105;constintINF=1000000000;
structE
i_head_no_back
·
2020-08-10 16:49
PAT
BFS
最大流(SAP)及最小费用最大流(SPFA)模版
b:a;usingnamespacestd;
structE
{intv,w,next;}edg[500000];intdis[2000],gap[2000],head[2000],nodes;intsourse
ACBoy_lhc
·
2020-08-10 13:38
比赛&模板
堆优化Dijkstra
include#include#include#include#include#include#include#includeusingnamespacestd;#definemaxn99999999
structE
Circle_forestrain
·
2020-08-10 12:31
堆优化
HDU 5603 树状数组
include#include#include#include#includeusingnamespacestd;constintMAXN=3*1e5+5;constintMAXM=1e6+5;intn,m;
structE
beihai2013
·
2020-08-09 07:21
----数据结构----
【题解】牛客OI周赛1-提高组 A.分组 dfs
#include#includeconstintN=1e5+10,M=2e5+10;intn,m,tot,vis[N],hd[N];
structE
不进清北不改名
·
2020-08-05 15:57
比赛
牛客网
dfs
POJ3694-Network(Tarjan缩点+LCA)
代码:#include#include#include#include#include#includeusingnamespacestd;constintMAXN=100005;
structE
LYoGa
·
2020-08-03 05:37
图论-深度优先遍历
Find a way——bfs
代码#include#include#include#include#include#include#includeusingnamespacestd;
structE
{i
Celavia_yu
·
2020-08-02 21:43
bfs
TOJ 3651 拓扑排序模板题
Java):1000MS/3000MS内存限制:65536KByte总提交:248测试通过:148描述有N个比赛队(1usingnamespacestd;constintinf=0x3f3f3f3f;
structe
Wu_yux
·
2020-08-01 11:38
拓扑排序
用C语言编写的英文单词管理小程序
///#include#include#defineMAX50//定义数据元素
structE
_C{charEn[30];charCh[30];};//定义顺序表structList{
structE
_Cdate
weixin_42389394
·
2020-07-31 13:21
libevent简介[翻译]11 Evbuffers:缓冲IO的功能函数
创建和释放evbuffer接口
structe
秋来叶黄
·
2020-07-27 13:00
洛谷P4001 狼抓兔子 2006北京区域赛
constintmaxl=2010;constintinf=2e9+10;typedefpairp;intn,m,tot,T;intdis[maxl*maxl];inta[maxl][maxl][3];
structe
二分抄代码
·
2020-07-16 02:45
平面图
上一页
1
2
3
下一页
按字母分类:
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
其他