题意:给定一个矩阵的每行的和和每列的和,以及每个格子的限制,让你求出原矩阵。

析:把行看成X,列看成Y,其实就是二分图,然后每个X到每个Y边一条边,然后加一个超级源点和汇点分别向X和Y连边,这样就形成了一个有源汇有上下界的网络,如果有最大流,那么这个矩阵就存在。

代码如下:

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cstring>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <map>
#include <cctype>
#include <cmath>
#include <stack>
#include <sstream>
#include <list>
#include <assert.h>
#include <bitset>
#define debug() puts("++++");
#define gcd(a, b) __gcd(a, b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a, b, sizeof a)
#define sz size()
#define pu push_up
#define pd push_down
#define cl clear()
#define all 1,n,1
#define FOR(i,x,n) for(int i = (x); i < (n); ++i)
#define freopenr freopen("in.txt", "r", stdin)
#define freopenw freopen("out.txt", "w", stdout)
using namespace std; typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int, int> P;
const int INF = 0x3f3f3f3f;
const double inf = 1e20;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int maxn = 250 + 10;
const int maxm = 1e5 + 10;
const int mod = 50007;
const int dr[] = {-1, 0, 1, 0};
const int dc[] = {0, -1, 0, 1};
const char *de[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
int n, m;
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
inline bool is_in(int r, int c) {
return r >= 0 && r < n && c >= 0 && c < m;
} struct Edge{
int from, to, cap, flow;
}; struct Dinic{
int n, m, s, t;
vector<Edge> edges;
vector<int> G[maxn];
int d[maxn];
bool vis[maxn];
int cur[maxn]; void init(int n){
this-> n = n;
for(int i = 0; i < n; ++i) G[i].cl;
edges.cl;
} void addEdge(int from, int to, int cap){
edges.pb((Edge){from, to, cap, 0});
edges.pb((Edge){to, from, 0, 0});
m = edges.sz;
G[from].pb(m-2); G[to].pb(m-1);
} bool bfs(){
ms(vis, 0); vis[s] = 1;
d[s] = 1;
queue<int> q;
q.push(s); while(!q.empty()){
int x = q.front(); q.pop();
for(int i = 0; i < G[x].sz; ++i){
Edge &e = edges[G[x][i]];
if(!vis[e.to] && e.cap > e.flow){
d[e.to] = d[x] + 1;
vis[e.to] = 1;
q.push(e.to);
}
}
}
return vis[t];
} int dfs(int x, int a){
if(x == t || a == 0) return a;
int flow = 0, f;
for(int &i = cur[x]; i < G[x].sz; ++i){
Edge &e = edges[G[x][i]];
if(d[e.to] == d[x] + 1 && (f = dfs(e.to, min(a, e.cap - e.flow))) > 0){
e.flow += f;
edges[G[x][i]^1].flow -= f;
a -= f;
flow += f;
if(a == 0) break;
}
}
return flow;
} int maxflow(int s, int t){
this->s = s; this-> t = t;
int flow = 0;
while(bfs()){ ms(cur, 0); flow += dfs(s, INF); }
return flow;
}
}; Dinic dinic;
int in[maxn];
int down[maxn][maxn], up[maxn][maxn];
bool ok; void judge(int i, int j, int v){
if(v < down[i][j] || v > up[i][j]) ok = false;
} int main(){
int T; cin >> T;
while(T--){
scanf("%d %d", &n, &m);
int s = 0, t = n + m + 1;
int S = t + 1, T = S + 1;
FOR(i, 1, S) FOR(j, 1, S){
down[i][j] = -1000;
up[i][j] = 1000;
}
ms(in, 0);
dinic.init(T + 2);
for(int i = 1; i <= n; ++i){
int x; scanf("%d", &x);
in[s] -= x; in[i] += x;
dinic.addEdge(s, i, 0);
}
for(int i = 1; i <= m; ++i){
int x; scanf("%d", &x);
in[i+n] -= x; in[t] += x;
dinic.addEdge(i+n, t, 0);
}
int num; scanf("%d", &num);
char op[5]; int u, v, c;
ok = true;
while(num--){
scanf("%d %d %s %d", &u, &v, op, &c);
if(!ok) continue;
if(u && v){
if(op[0] == '='){ judge(u, v+n, c); up[u][v+n] = down[u][v+n] = c; }
else if(op[0] == '<') up[u][v+n] = min(up[u][v+n], c - 1);
else down[u][v+n] = max(down[u][v+n], c + 1);
}
else if(u){
for(int j = 1; j <= m; ++j){
if(op[0] == '='){ judge(u, j+n, c); up[u][j+n] = down[u][j+n] = c; }
else if(op[0] == '<') up[u][j+n] = min(up[u][j+n], c - 1);
else down[u][j+n] = max(down[u][j+n], c + 1);
}
}
else if(v){
for(int i = 1; i <= n; ++i){
if(op[0] == '='){ judge(i, v+n, c); up[i][v+n] = down[i][v+n] = c; }
else if(op[0] == '<') up[i][v+n] = min(up[i][v+n], c - 1);
else down[i][v+n] = max(down[i][v+n], c + 1);
}
}
else{
for(int i = 1; i <= n; ++i)
for(int j = 1; j <= m; ++j){
if(op[0] == '='){ judge(i, j+n, c); up[i][j+n] = down[i][j+n] = c; }
else if(op[0] == '<') up[i][j+n] = min(up[i][j+n], c - 1);
else down[i][j+n] = max(down[i][j+n], c + 1);
}
}
}
int ans = 0;
if(!ok){ puts("IMPOSSIBLE"); goto A; }
for(int i = 1; i <= n; ++i)
for(int j = 1; j <= m; ++j){
if(up[i][j+n] < down[i][j+n]) ok = false;
dinic.addEdge(i, j+n, up[i][j+n] - down[i][j+n]);
in[i] -= down[i][j+n];
in[j+n] += down[i][j+n];
}
dinic.addEdge(t, s, INF);
for(int i = 0; i <= t; ++i){
if(in[i] > 0) dinic.addEdge(S, i, in[i]), ans += in[i];
if(in[i] < 0) dinic.addEdge(i, T, -in[i]);
}
if(!ok || ans != dinic.maxflow(S, T)){ puts("IMPOSSIBLE"); goto A; }
for(int i = 1; i <= n; ++i){
int cur = 0;
for(int j = 0; dinic.edges[dinic.G[i][j]].to != n+1; ++j, cur = j);
for(int j = cur, cnt = 0; cnt < m; ++cnt, ++j)
printf("%d%c", dinic.edges[dinic.G[i][j]].flow + down[i][cnt+n+1], " \n"[cnt+1==m]);
}
A:;
if(T) puts("");
}
return 0;
}

  

POJ 2396 Budget (有源汇有上下界最大流)的更多相关文章

  1. [poj] 2396 [zoj] 1994 budget || 有源汇的上下界可行流

    poj原题 zoj原题 //注意zoj最后一行不要多输出空行 现在要针对多赛区竞赛制定一个预算,该预算是一个行代表不同种类支出.列代表不同赛区支出的矩阵.组委会曾经开会讨论过各类支出的总和,以及各赛区 ...

  2. LOJ116 - 有源汇有上下界最大流

    原题链接 Description 模板题啦~ Code //有源汇有上下界最大流 #include <cstdio> #include <cstring> #include & ...

  3. 【Loj116】有源汇有上下界最大流(网络流)

    [Loj116]有源汇有上下界最大流(网络流) 题面 Loj 题解 模板题. #include<iostream> #include<cstdio> #include<c ...

  4. loj #116. 有源汇有上下界最大流

    题目链接 有源汇有上下界最大流,->上下界网络流 注意细节,重置cur和dis数组时,有n+2个点 #include<cstdio> #include<algorithm> ...

  5. loj #117. 有源汇有上下界最小流

    题目链接 有源汇有上下界最小流,->上下界网络流 注意细节,边数组也要算上后加到SS,TT边. #include<cstdio> #include<algorithm> ...

  6. LOJ.117.[模板]有源汇有上下界最小流(Dinic)

    题目链接 有源汇有上下界最小流 Sol1. 首先和无源汇网络流一样建图,求SS->TT最大流: 然后连边(T->S,[0,INF]),再求一遍SS->TT最大流,答案为新添加边的流量 ...

  7. 【LOJ116】有源汇有上下界最大流(模板题)

    点此看题面 大致题意: 给你每条边的流量上下界,让你先判断是否存在可行流.若存在,则输出最大流. 无源汇上下界可行流 在做此题之前,最好先去看看这道题目:[LOJ115]无源汇有上下界可行流. 大致思 ...

  8. LibreOJ #116. 有源汇有上下界最大流

    二次联通门 : LibreOJ #116. 有源汇有上下界最大流 /* LibreOJ #116. 有源汇有上下界最大流 板子题 我也就会写写板子题了.. 写个板子第一个点还死活过不去... 只能打个 ...

  9. Shoot the Bullet(有源汇带上下界最大流)

    有源汇带上下界最大流 在原图基础上连一条汇点到源点流量为inf的边,将有源汇网络流转化为无源汇网络流用相同方法判断是否满流,如果满流再跑一边源点到汇点的最大流就是答案 例题:Shoot the Bul ...

随机推荐

  1. Eclipse添加中文javadoc

    SUN官方API中文版[JDK1.6]1.6API文档(中文)的下载地址:ZIP格式用来设置javadoc,下载地址:http://download.java.net/jdk/jdk-api-loca ...

  2. DBUnit使用介绍

    一.DbUnit设计理念熟悉单元测试的开发人员都知道,在对数据库进行单元测试时候,通常采用的方案有运用模拟对象(mock objects)和stubs两种.通过隔离关联的数据库访问类,比如JDBC的相 ...

  3. 智能家居入门DIY——【二、LD3320之语音识别】

    前一篇说了一下只有RX,TX,VCC,GND的WIFI模块软串口通讯:在实现了远程观察数据,类似的就可以实现远程控制.接下来说一下近距离控制,很多情况下应用语音识别技术无疑比掏出手机操作要更人性化一些 ...

  4. C++ 实例化对象 p->printX()

    一.从栈实例化对象 我们首先定义一个类,类的名字叫TV,里面包括两个成员变量,两个成员函数. class TV // 定义一个电视的类TV { public: ]; // 定义类的属性,一个数组 in ...

  5. LIS系列总结

    此篇博客总结常见的LIS模型变形的解法. ------------------------------------------------------------------- 〇.LIS的$O(Nl ...

  6. Python实现进度条总结

    先说一下文本系统的控制符:\r:   将光标移动到当前行的首位而不换行:\n:   将光标移动到下一行,并不移动到首位:\r\n: 将光标移动到下一行首位.     环境:root@ubuntu16: ...

  7. ubuntu16.04初始化配置

    允许root登录 sudo passwd root 启动网卡DHCP并配置DNS vi /etc/network/interfaces auto ens3 #auto lo iface ens3 in ...

  8. 使用GridFsTemplate在Mongo中存取文件

      Maven依赖(还有一些springboot需要的) <parent> <groupId>org.springframework.boot</groupId> ...

  9. J2EE Filter中修改request内容

    最近在做一个微信相关的网站,很多地方涉及到微信表情的输入,导致内容无法插入到数据库,虽然有用到一个表情过滤的工具类,但是需要过滤的地方比较多,于是想到在过滤器中过滤用户请求的内容. request这个 ...

  10. ES6系列_10之Symbol在对象中的作用

    在ES5中 对象属性名都是字符串,这容易造成属性名的冲突,比如,你使用了一个他人提供的对象,但又想为这个对象添加新的方法(mixin 模式),新方法的名字就有可能与现有方法产生冲突,于是 ES6 引入 ...