网络流之最大流与最小费用流入门&&模板
最大流模板
处理重边的+(优化)
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e6 + ;
const int INF = 0x3f3f3f3f; struct Edge
{
int from,to,cap,flow;
Edge(){}
Edge(int from,int to,int cap,int flow):from(from),to(to),cap(cap),flow(flow){}
}; struct Dinic
{
int n,m,s,t; //结点数,边数(包括反向弧),源点与汇点编号
vector<Edge> edges; //边表 edges[e]和edges[e^1]互为反向弧
vector<int> G[maxn]; //邻接表,G[i][j]表示结点i的第j条边在e数组中的序号
bool vis[maxn]; //BFS使用,标记一个节点是否被遍历过
int d[maxn]; //d[i]表从起点s到i点的距离(层次)
int cur[maxn]; //cur[i]表当前正访问i节点的第cur[i]条弧 void init(int n,int s,int t)
{
this->n=n,this->s=s,this->t=t;
for(int i=;i<=n;i++) G[i].clear();
edges.clear();
} void AddEdge(int from,int to,int cap)
{
edges.push_back( Edge(from,to,cap,) );
edges.push_back( Edge(to,from,,) );
m = edges.size();
G[from].push_back(m-);
G[to].push_back(m-);
} bool BFS()
{
memset(vis,,sizeof(vis));
queue<int> Q;//用来保存节点编号的
Q.push(s);
d[s]=;
vis[s]=true;
while(!Q.empty())
{
int x=Q.front(); Q.pop();
for(int i=; i<G[x].size(); i++)
{
Edge& e=edges[G[x][i]];
if(!vis[e.to] && e.cap>e.flow)
{
vis[e.to]=true;
d[e.to] = d[x]+;
Q.push(e.to);
}
}
}
return vis[t];
} //a表示从s到x目前为止所有弧的最小残量
//flow表示从x到t的最小残量
int DFS(int x,int a)
{
if(x==t || a==)return a;
int flow=,f;//flow用来记录从x到t的最小残量
for(int& i=cur[x]; i<G[x].size(); i++)///注意这里的&符号,这样i增加的同时也能改变cur[u]的值,达到记录当前弧的目的
{ Edge& e=edges[G[x][i]];
if(d[x]+==d[e.to] && (f=DFS( e.to,min(a,e.cap-e.flow) ) )> )
{
e.flow +=f;
edges[G[x][i]^].flow -=f;
flow += f;
a -= f;
if(a==) break;
}
}
if(!flow) d[x] = -;///炸点优化
return flow;
} int Maxflow()
{
int flow=;
while(BFS())
{
memset(cur,,sizeof(cur));
flow += DFS(s,INF);
}
return flow;
}
}DC;
int main(void )
{
int N,M,S,T;
while(scanf("%d%d%d%d",&N,&M,&S,&T)!=EOF)
{
DC.init(N,S,T);
while(M--)
{
int u,v,w;
scanf("%d%d%d",&u,&v,&w);
DC.AddEdge(u,v,w);
}
printf("%d",DC.Maxflow());
}
}
View Cod
比上面快一点
#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<cstdio>
#include<vector>
#include<cmath>
#include<queue>
#define ll long long
#define maxn 23500
#define maxe 1000000
#define inf 1100000000
using namespace std; struct Edge
{
int u, v, cap;
int nxt;
}edge[maxe]; int head[maxn];
int n, m; struct Dicnic
{
int level[maxn];
int iter[maxn];
int add;
void init(){
add = ; memset(head, -, sizeof(head));
memset(iter, -, sizeof(iter));
}
void insert(int u, int v, int c){
edge[add].u = u; edge[add].v = v; edge[add].cap = c;
edge[add].nxt = head[u]; head[u] = add++;
edge[add].u = v; edge[add].v = u; edge[add].cap = ;
edge[add].nxt = head[v]; head[v] = add++;
}
void bfs(int s){
memset(level, -, sizeof(level));
queue<int> que;
level[s] = ;
que.push(s);
while (!que.empty()){
int v = que.front(); que.pop();
for (int i = head[v]; i != -; i = edge[i].nxt){
Edge &e = edge[i];
if (e.cap > && level[e.v] < ){
level[e.v] = level[v] + ;
que.push(e.v);
}
}
}
} int dfs(int v, int t, int f){
if (v == t) return f;
for (int &i = iter[v]; i != -; i = edge[i].nxt){
Edge &e = edge[i]; Edge &reve = edge[i ^ ];
if (e.cap > && level[v] < level[e.v]){
int d = dfs(e.v, t, min(f, e.cap));
if (d>){
e.cap -= d; reve.cap += d;
return d;
}
}
}
return ;
} int max_flow(int s, int t){
int flow = ;
for (;;){
bfs(s);
if (level[t] < ) return flow;
memcpy(iter, head, sizeof(iter));
int f;
while ((f = dfs(s, t, inf))>){
flow += f;
}
}
}
}net; int a[maxn], b[maxn]; int main()
{
while (cin >> n >> m){
net.init();
int s = , t = n + ;
for (int i = ; i <= n; i++) {
scanf("%d", a + i); scanf("%d", b + i);
net.insert(i, t, a[i]);
net.insert(s, i, b[i]);
}
int ui, vi, wi;
for (int i = ; i < m; i++){
scanf("%d%d%d", &ui, &vi, &wi);
net.insert(ui, vi, wi);
net.insert(vi, ui, wi);
}
printf("%d\n", net.max_flow(s,t));
}
return ;
}
还行
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue> using namespace std; const int maxn = ;
const int INF = 0x3f3f3f;
struct no
{
int to;
int cap;
int rev;
};
vector<no> G[maxn];
int level[maxn];///顶点到源点的距离标记
int iter[maxn];///当前弧,在其之前的边没有用了 void add(int from,int to,int cap)
{
G[from].push_back((no){to,cap,G[to].size()});
G[to].push_back((no){from,,G[from].size()-});
} void bfs(int s)
{
memset(level,-,sizeof(level));
queue<int> que;
level[s] = ;
que.push(s);
while(!que.empty())
{
int v = que.front( ) ; que.pop( );
for(int i= ; i<G[v].size( ) ; i++)
{
no &e = G[v][i];
if(e.cap>&&level[e.to]<)
{
level[e.to] = level[v]+;
que.push(e.to);
}
}
}
}
int dfs(int v,int t, int f)
{
if(v==t) return f; for(int &i=iter[v];i<G[v].size();++i)//这里是引用,i++的同时iter也++,其实相当于上个的used,不过不用判断了
{
no &e = G[v][i];
if(e.cap> && level[e.to]>level[v])
{
int d=dfs(e.to,t,min(e.cap,f));
if(d>)
{
e.cap-=d;
G[e.to][e.rev].cap+=d;
return d;
}
}
}
return ;
}
int max_flow(int s,int t)
{
int flow = ;
for( ; ; )
{
bfs(s);
if(level[t]<)
return flow;
memset(iter,,sizeof(iter));
int f;
while((f=dfs(s,t,INF))>)
flow+=f;
}
}
int main()
{
int s,t,m,n;
scanf("%d%d%d%d",&n,&m,&s,&t); int u,v,cap;
for(int i=;i<m;++i)
{
scanf("%d%d%d",&u,&v,&cap);
add(u,v,cap);
} printf("%d",max_flow(s,t));
return ;
}
神奇代码:巨快
#include <bits/stdc++.h> const int MAXN = 1e6 + ;
const int INF = 0x3f3f3f3f; struct Node {
int v, f, index;
Node(int v, int f, int index) : v(v), f(f), index(index) {}
}; int n, m, s, t;
std::vector<Node> edge[MAXN];
std::vector<int> list[MAXN], height, count, que, excess;
typedef std::list<int> List;
std::vector<List::iterator> iter;
List dlist[MAXN];
int highest, highestActive;
typedef std::vector<Node>::iterator Iterator; void init()
{
for(int i=; i<=n; i++)
edge[i].clear();
} void addEdge(const int u, const int v, const int f) {
edge[u].push_back(Node(v, f, edge[v].size()));
edge[v].push_back(Node(u, , edge[u].size() - ));
} void globalRelabel(int n, int t) {
height.assign(n, n);
height[t] = ;
count.assign(n, );
que.clear();
que.resize(n + );
int qh = , qt = ;
for (que[qt++] = t; qh < qt;) {
int u = que[qh++], h = height[u] + ;
for (Iterator p = edge[u].begin(); p != edge[u].end(); ++p) {
if (height[p->v] == n && edge[p->v][p->index].f > ) {
count[height[p->v] = h]++;
que[qt++] = p->v;
}
}
}
for (int i = ; i <= n; i++) {
list[i].clear();
dlist[i].clear();
}
for (int u = ; u < n; ++u) {
if (height[u] < n) {
iter[u] = dlist[height[u]].insert(dlist[height[u]].begin(), u);
if (excess[u] > ) list[height[u]].push_back(u);
}
}
highest = (highestActive = height[que[qt - ]]);
}
void push(int u, Node &e) {
int v = e.v;
int df = std::min(excess[u], e.f);
e.f -= df;
edge[v][e.index].f += df;
excess[u] -= df;
excess[v] += df;
if ( < excess[v] && excess[v] <= df) list[height[v]].push_back(v);
} void discharge(int n, int u) {
int nh = n;
for (Iterator p = edge[u].begin(); p != edge[u].end(); ++p) {
if (p->f > ) {
if (height[u] == height[p->v] + ) {
push(u, *p);
if (excess[u] == ) return;
} else {
nh = std::min(nh, height[p->v] + );
}
}
}
int h = height[u];
if (count[h] == ) {
for (int i = h; i <= highest; i++) {
for (List::iterator it = dlist[i].begin(); it != dlist[i].end();
++it) {
count[height[*it]]--;
height[*it] = n;
}
dlist[i].clear();
}
highest = h - ;
} else {
count[h]--;
iter[u] = dlist[h].erase(iter[u]);
height[u] = nh;
if (nh == n) return;
count[nh]++;
iter[u] = dlist[nh].insert(dlist[nh].begin(), u);
highest = std::max(highest, highestActive = nh);
list[nh].push_back(u);
}
} int hlpp(int n, int s, int t) {
if (s == t) return ;
highestActive = ;
highest = ;
height.assign(n, );
height[s] = n;
iter.resize(n);
for (int i = ; i < n; i++)
if (i != s)
iter[i] = dlist[height[i]].insert(dlist[height[i]].begin(), i);
count.assign(n, );
count[] = n - ;
excess.assign(n, );
excess[s] = INF;
excess[t] = -INF;
for (int i = ; i < (int)edge[s].size(); i++) push(s, edge[s][i]);
globalRelabel(n, t);
for (int u /*, res = n*/; highestActive >= ;) {
if (list[highestActive].empty()) {
highestActive--;
continue;
}
u = list[highestActive].back();
list[highestActive].pop_back();
discharge(n, u);
// if (--res == 0) globalRelabel(res = n, t);
}
return excess[t] + INF;
} int main() {
while(~scanf("%d %d %d %d", &n, &m, &s, &t)){
init();
for (int i = , u, v, f; i < m; i++) {
scanf("%d %d %d", &u, &v, &f);
addEdge(u, v, f);
}
printf("%d", hlpp(n + , s, t));///点是1~n范围的话,貌似要 n+1
}
return ;
}
最大流的最小费用流模板
struct Edge
{
int from,to,cap,flow,cost;
Edge(){}
Edge(int f,int t,int c,int fl,int co):from(f),to(t),cap(c),flow(fl),cost(co){}
}; struct MCMF
{
int n,m,s,t;
vector<Edge> edges;
vector<int> G[maxn];
bool inq[maxn]; //是否在队列
int d[maxn]; //Bellman_ford单源最短路径
int p[maxn]; //p[i]表从s到i的最小费用路径上的最后一条弧编号
int a[maxn]; //a[i]表示从s到i的最小残量 //初始化
void init(int n,int s,int t)
{
this->n=n, this->s=s, this->t=t;
edges.clear();
for(int i=;i<n;++i) G[i].clear();
} //添加一条有向边
void AddEdge(int from,int to,int cap,int cost)
{
edges.push_back(Edge(from,to,cap,,cost));
edges.push_back(Edge(to,from,,,-cost));
m=edges.size();
G[from].push_back(m-);
G[to].push_back(m-);
} //求一次增广路
bool BellmanFord(int &flow, int &cost)
{
for(int i=;i<n;++i) d[i]=INF;
memset(inq,,sizeof(inq));
d[s]=, a[s]=INF, inq[s]=true, p[s]=;
queue<int> Q;
Q.push(s);
while(!Q.empty())
{
int u=Q.front(); Q.pop();
inq[u]=false;
for(int i=;i<G[u].size();++i)
{
Edge &e=edges[G[u][i]];
if(e.cap>e.flow && d[e.to]>d[u]+e.cost)
{
d[e.to]= d[u]+e.cost;
p[e.to]=G[u][i];
a[e.to]= min(a[u],e.cap-e.flow);
if(!inq[e.to]){ Q.push(e.to); inq[e.to]=true; }
}
}
}
if(d[t]==INF) return false;
flow +=a[t];
cost +=a[t]*d[t];
int u=t;
while(u!=s)
{
edges[p[u]].flow += a[t];
edges[p[u]^].flow -=a[t];
u = edges[p[u]].from;
}
return true;
} //求出最小费用最大流
int Min_cost()
{
int flow=,cost=;
while(BellmanFord(flow,cost));
return cost;
}
}MM;
struct Edge
{
int from,to,cap,flow,cost;
Edge(int u,int v,int ca,int f,int co):from(u),to(v),cap(ca),flow(f),cost(co){};
}; struct MCMF
{
int n,m,s,t;
vector<Edge> edges;
vector<int> G[maxn];
int inq[maxn];//是否在队列中
int d[maxn];//距离
int p[maxn];//上一条弧
int a[maxn];//可改进量 void init(int n)//初始化
{
this->n=n;
for(int i=;i<=n;i++)
G[i].clear();
edges.clear();
} void AddEdge(int from,int to,int cap,int cost)//加边
{
edges.push_back(Edge(from,to,cap,,cost));
edges.push_back(Edge(to,from,,,-cost));
int m=edges.size();
G[from].push_back(m-);
G[to].push_back(m-);
} bool SPFA(int s,int t,int &flow,int &cost)//寻找最小费用的增广路,使用引用同时修改原flow,cost
{
for(int i=;i<n;i++)
d[i]=INF;
memset(inq,,sizeof(inq));
d[s]=;inq[s]=;p[s]=;a[s]=INF;
queue<int> Q;
Q.push(s);
while(!Q.empty())
{
int u=Q.front();
Q.pop();
inq[u]--;
for(int i=;i<G[u].size();i++)
{
Edge& e=edges[G[u][i]];
if(e.cap>e.flow && d[e.to]>d[u]+e.cost)//满足可增广且可变短
{
d[e.to]=d[u]+e.cost;
p[e.to]=G[u][i];
a[e.to]=min(a[u],e.cap-e.flow);
if(!inq[e.to])
{
inq[e.to]++;
Q.push(e.to);
}
}
}
}
if(d[t]==INF) return false;//汇点不可达则退出
flow+=a[t];
cost+=d[t]*a[t];
int u=t;
while(u!=s)//更新正向边和反向边
{
edges[p[u]].flow+=a[t];
edges[p[u]^].flow-=a[t];
u=edges[p[u]].from;
}
return true;
} int MincotMaxflow(int s,int t)
{
int flow=,cost=;
while(SPFA(s,t,flow,cost));
return cost;
}
}MM;
固定流量的最小费用
#include <iostream>
#include <queue>
#include <vector>
#include <cstdio>
#include <cstring> using namespace std;
const int maxn = ;
const int INF = 0x3f3f3f3f; typedef pair<int,int> P;
struct Edge
{
int to, cap, cost, rev;
Edge(int to_, int cap_, int cost_, int rev_):to(to_),cap(cap_),cost(cost_),rev(rev_){}
}; vector<Edge> G[maxn];
int V, n, m, relation[][];
int h[maxn], dist[maxn], prevv[maxn], preve[maxn]; void add_edge(int from, int to, int cap, int cost)
{
G[from].push_back(Edge(to, cap, cost, G[to].size()));
G[to].push_back(Edge(from, , -cost, G[from].size()-));
} int min_cost_flow(int s, int t, int f)
{
int res = ;
memset(h, , sizeof(h));
while(f > ) {
priority_queue<P, vector<P>, greater<P> > pq;
fill(dist, dist + V, INF);
dist[s] = ;
pq.push(P(, s));
while(!pq.empty()) {
P p = pq.top(); pq.pop();
int v = p.second;
if(dist[v] < p.first) continue;
for(int i = ; i < G[v].size(); i++) {
Edge& e = G[v][i];
if(e.cap > && dist[e.to] > dist[v] + e.cost + h[v] - h[e.to]) {
dist[e.to] = dist[v] + e.cost + h[v] - h[e.to];
prevv[e.to] = v;
preve[e.to] = i;
pq.push(P(dist[e.to], e.to));
}
}
}
if(dist[t] == INF) return -; for(int v = ; v < V; v++) h[v] += dist[v]; int d = f;
for(int v = t; v != s; v = prevv[v]) {
d = min(d, G[prevv[v]][preve[v]].cap);
}
f -= d;
res += d * h[t];
for(int v = t; v != s; v = prevv[v]) {
Edge& e = G[prevv[v]][preve[v]];
e.cap -= d;
G[v][e.rev].cap += d;
}
}
return res;
}
理论快
#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<ctime>
#include<cctype>
#include<string>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
using namespace std; #define end() return 0 typedef long long ll;
typedef unsigned int uint;
typedef unsigned long long ull; const int maxn = + ;
const int INF = 0x7f7f7f7f; struct Edge{
int from,to,cap,flow,cost;
Edge(int u,int v,int c,int f,int w):from(u),to(v),cap(c),flow(f),cost(w){}
}; struct MCMF{
int n,m;
vector<Edge>edge; //边数的两倍
vector<int>G[maxn]; //邻接表,G[i][j]表示i的第j条边在e数组中的序号
int inq[maxn]; //是否在队列
int d[maxn]; //Bellman-Ford
int p[maxn]; //上一条弧
int a[maxn]; //可改进量 void init(int n){
this -> n = n;
for(int i=;i<=n;i++) G[i].clear();
edge.clear();
} void addEdge(int from,int to,int cap,int cost){
edge.push_back(Edge(from,to,cap,,cost));
edge.push_back(Edge(to,from,,,-cost));
m=edge.size();
G[from].push_back(m-);
G[to].push_back(m-);
} bool BellmanFord(int s,int t,int& flow,int& cost){
memset(d,INF,sizeof(d));
memset(inq,,sizeof(inq));
d[s]=; inq[s]=; p[s]=; a[s]=INF; queue<int>q;
q.push(s);
while(!q.empty()){
int u=q.front();q.pop();
inq[u]=;
for(int i=;i<G[u].size();i++){
Edge& e=edge[G[u][i]];
if(e.cap>e.flow&&d[e.to]>d[u]+e.cost){
d[e.to]=d[u]+e.cost;
p[e.to]=G[u][i];
a[e.to]=min(a[u],e.cap-e.flow);
if(!inq[e.to]){
q.push(e.to);
inq[e.to]=;
}
}
}
}
if(d[t]==INF) return false;
flow+=a[t];
cost+=d[t];
if(flow==) return false;
for(int u=t;u!=s;u=edge[p[u]].from){
edge[p[u]].flow+=a[t];
edge[p[u]^].flow-=a[t];
}
return true;
} //需要保证初始网络中没有负权圈
int MincostMaxflow(int s,int t){
int flow=,cost=;
while(BellmanFord(s,t,flow,cost));
return cost;
}
}; int N,M;
int a,b,c;
MCMF mcmf; void input(){
scanf("%d%d",&N,&M);
mcmf.init(N);
for(int i=;i<M;i++){
scanf("%d%d%d",&a,&b,&c);
mcmf.addEdge(a,b,,c);
mcmf.addEdge(b,a,,c);
}
} void solve(){
printf("%d\n",mcmf.MincostMaxflow(,N));
} int main(){
input();
solve();
end();
}
区别是81行多了个 if(flow==2) return false : 意思是控制流量为2;
网络流之最大流与最小费用流入门&&模板的更多相关文章
- hdu 3549 Flow Problem【最大流增广路入门模板题】
题目:http://acm.hdu.edu.cn/showproblem.php?pid=3549 Flow Problem Time Limit: 5000/5000 MS (Java/Others ...
- hdu 4940 Destroy Transportation system( 无源汇上下界网络流的可行流推断 )
题意:有n个点和m条有向边构成的网络.每条边有两个花费: d:毁坏这条边的花费 b:重建一条双向边的花费 寻找这样两个点集,使得点集s到点集t满足 毁坏全部S到T的路径的费用和 > 毁坏全部T到 ...
- HDU 3416 Marriage Match IV (最短路径,网络流,最大流)
HDU 3416 Marriage Match IV (最短路径,网络流,最大流) Description Do not sincere non-interference. Like that sho ...
- [洛谷P3376题解]网络流(最大流)的实现算法讲解与代码
[洛谷P3376题解]网络流(最大流)的实现算法讲解与代码 更坏的阅读体验 定义 对于给定的一个网络,有向图中每个的边权表示可以通过的最大流量.假设出发点S水流无限大,求水流到终点T后的最大流量. 起 ...
- 【Luogu2711】小行星(网络流,最大流)
[Luogu2711]小行星(网络流,最大流) 题面 题目描述 星云中有n颗行星,每颗行星的位置是(x,y,z).每次可以消除一个面(即x,y或z坐标相等)的行星,但是由于时间有限,求消除这些行星的最 ...
- 网络流之最大流Dinic算法模版
/* 网络流之最大流Dinic算法模版 */ #include <cstring> #include <cstdio> #include <queue> using ...
- 【BZOJ2324】[ZJOI2011]营救皮卡丘(网络流,费用流)
[BZOJ2324][ZJOI2011]营救皮卡丘(网络流,费用流) 题面 BZOJ 洛谷 题解 如果考虑每个人走的路径,就会很麻烦. 转过来考虑每个人破坏的点集,这样子每个人可以得到一个上升的序列. ...
- HDU 3605 Escape (网络流,最大流,位运算压缩)
HDU 3605 Escape (网络流,最大流,位运算压缩) Description 2012 If this is the end of the world how to do? I do not ...
- HDU 3338 Kakuro Extension (网络流,最大流)
HDU 3338 Kakuro Extension (网络流,最大流) Description If you solved problem like this, forget it.Because y ...
随机推荐
- java之类和对象
类的成员: 成员变量和成员函数. 成员函数:构造函数和普通函数. 构造函数: 作用:自动对对象进行初始化 特点:1.方法名和类名一致 2.没有返回值 问: 1.我们能够定义几次构造函数? 我们可以定义 ...
- 使用JSONObject类来生成json格式的数据
JSONObject类不支持javabean转json 生成json格式数据的方式有: 1.使用JSONObject原生的来生成 2.使用map构建json格式的数据 3.使用javabean来构建j ...
- 去除Activity上面的标题边框
实现方法:1.在代码中实现:在此方法setContentView(R.layout.main)之前加入:requestWindowFeature(Window.FEATURE_NO_TITLE);标题 ...
- CDOJ1324-卿学姐与公主 【线段树点更新】
http://acm.uestc.edu.cn/#/problem/show/1324 卿学姐与公主 Time Limit: 2000/1000MS (Java/Others) Memory ...
- ArcEngine中多边形内外环的处理(转)
ArcEngine中多边形内外环的处理 原创 2012年09月06日 22:49:11 标签: object / null / 数据库 3462 Polylgon对象是由一个或多个Ring对象的有序集 ...
- 利用powerdesigner创建表模型后导出sql语句方法,以及报错 Generation aborted due to errors detected during the verification of the model.的解决办法
今天用powerdesigner建了表模型,下面先说一下导出sql语句的步骤. 1.选项 2. 然后就报错了,下面说解决办法,很简单. 你没看错,把模型检查的√去掉就行了~~ 导出表名不带双引号的设置 ...
- vue mock数据设置
1.新建mock文件夹 2.添加你需要的数据例如新建商品表goods.json { "status":"0", "result":[ { & ...
- tr td th是什么的缩写
tr是 table row 表格的行 td是table data th是table heading表格标题 ,一般表格第一行的数据都是table heading
- 51NOD1835 完全图
传送门 分析 令f(i,j)表示i点完全图有j个联通块的方案数. 讨论有i-1个点已经固定了,我们拉出一个代表元素然后讨论它的集合大小然后组合数算一下就可以了. $$ dp(i,j) = \sum_{ ...
- 101334E Exploring Pyramids
传送门 题目大意 看样例,懂题意 分析 实际就是个区间dp,我开始居然不会...详见代码(代码用的记忆化搜索) 代码 #include<iostream> #include<cstd ...