上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: kmkmp #include<bits/stdc++.h> using namespace std; char str[1500005]; int n,kmp[1500005],cir[1500005],tms[30],suf[1500005],pre[2500005],per[27],cnt; l 阅读全文
posted @ 2024-10-22 15:44 yzc_is_SadBee 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 首先,这题最好的一个地方,在于它给出的关于next的讲解实在是妙极!!!!! 这题比我讲的好100倍! 赞美lg 捧lg的话到此为止,进入正文 题解 #include<bits/stdc++.h> using namespace std; const long long MOD=1e9+7; int 阅读全文
posted @ 2024-10-22 14:16 yzc_is_SadBee 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 最后还是照着题解A了这道题…… #include <bits/stdc++.h> using namespace std; int n,m,s,t,edge_sum=1; int maxflow,mincost; int dis[5005],head[5005],incf[5005],pre[500 阅读全文
posted @ 2024-10-22 13:23 yzc_is_SadBee 阅读(3) 评论(0) 推荐(0) 编辑
摘要: oh dear #include<bits/stdc++.h> using namespace std; int n,k,m,s,t,a[105][105],wen[105]; int d[100005]; bool vis[100005]; int qi,mo,f; inline int read 阅读全文
posted @ 2024-10-22 11:39 yzc_is_SadBee 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 酷狗没会员了QAQ #include<bits/stdc++.h> using namespace std; int n,m,f[1001],enm[1001]; int find(int x) { if(f[x]!=x) x=find(f[x]); return x; } void hebing( 阅读全文
posted @ 2024-10-22 11:16 yzc_is_SadBee 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 终于把自己搞蒙了 简而言之,最小费用最大流就是这样: 图论中的一种理论与方法,研究网络上的一类最优化问题 。很多系统中涉及流量问题,例如公路系统中车流量,网络中的数据信息流,供油管道的油流量等。我们可以将有向图进一步理解为“流网络”(flow network),并利用这样的抽象模型求解有关流量的问题 阅读全文
posted @ 2024-10-21 20:47 yzc_is_SadBee 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ![](https://cdn.luogu.com.cn/upload/image_hosting/mif38k0x.png) 阅读全文
posted @ 2024-10-21 17:41 yzc_is_SadBee 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <path stroke-linecap="round" d="M5,0 0,2.5 5,5z" id="raphael-marker-block" style="-web 阅读全文
posted @ 2024-10-21 16:29 yzc_is_SadBee 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 没保存,CaO 抢救了一下,详见 my sol: A 打表。 1 I 2 II V X 3 III IV VI IX 4 VII 5 VIII 剩余的加X,再加2火柴即可 注意没有40! 完整: 1 I 2 II V X 3 III IV VI IX XI 4 VII XII XV XX 5 VII 阅读全文
posted @ 2024-10-21 16:22 yzc_is_SadBee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 椒过 #include <bits/stdc++.h> using namespace std; int n,m,tot,lnk[505],ter[500005],nxt[500005],st[500005],ed[500005],deg[505]; double a[505][505],b[505 阅读全文
posted @ 2024-10-21 08:58 yzc_is_SadBee 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页