维护数列 https://www.acwing.com/problem/content/957/ 线段树能写的splay都能写,不过splay常数较大。时间复杂度大概是线段树的三倍
#include<bits/stdc.h>
using namespace std;
const int N 500010,INF 1e9;
int n,m;
struct Node
{int s[2],p,v;int r…
费用流 https://www.acwing.com/problem/content/2176/
//最大流的最小费用
#include<bits/stdc.h>
using namespace std;const int N 5010, M 100010, INF 1e8;int n,m,S,T;
int ne[M],e[M],f[M],w[M],h[N],idx;
int q[N],d[N],pre[N],incf[N];
bool st[N];void add…
您得到的行为是预期的,请阅读input文档。在input([prompt])If the prompt argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newli…