hdu4888

Redraw Beautiful Drawings

Time Limit: 3000/1500 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 2007    Accepted Submission(s): 447

Problem Description
Alice and Bob are playing together. Alice is crazy about art and she has visited many museums around the world. She has a good memory and she can remember all drawings she has seen.
Today Alice designs a game using these drawings in her memory. First, she matches K+1 colors appears in the picture to K+1 different integers(from 0 to K). After that, she slices the drawing into grids and there are N rows and M columns. Each grid has an integer on it(from 0 to K) representing the color on the corresponding position in the original drawing. Alice wants to share the wonderful drawings with Bob and she tells Bob the size of the drawing, the number of different colors, and the sum of integers on each row and each column. Bob has to redraw the drawing with Alice's information. Unfortunately, somtimes, the information Alice offers is wrong because of Alice's poor math. And sometimes, Bob can work out multiple different drawings using the information Alice provides. Bob gets confused and he needs your help. You have to tell Bob if Alice's information is right and if her information is right you should also tell Bob whether he can get a unique drawing.
 
Input
The input contains mutiple testcases.
For each testcase, the first line contains three integers N(1 ≤ N ≤ 400) , M(1 ≤ M ≤ 400) and K(1 ≤ K ≤ 40). N integers are given in the second line representing the sum of N rows. M integers are given in the third line representing the sum of M columns.
The input is terminated by EOF.
 
Output
For each testcase, if there is no solution for Bob, output "Impossible" in one line(without the quotation mark); if there is only one solution for Bob, output "Unique" in one line(without the quotation mark) and output an N * M matrix in the following N lines representing Bob's unique solution; if there are many ways for Bob to redraw the drawing, output "Not Unique" in one line(without the quotation mark).
 
Sample Input
2 2 4
4 2
4 2
4 2 2
2 2 5 0
5 4
1 4 3
9
1 2 3 3
 
Sample Output
Not Unique
Impossible
Unique
1 2 3 3
 
Author
Fudan University
 
Source
 
Recommend
We have carefully selected several similar problems for you:  4910 4909 4908 4907 4906

大意:n*m的矩阵,每个格子可以是0~k,给出各行的和和各列的和,求格子数字唯一方案,或判断无解或不唯一。

题解:

最大流,每行一个点,每列一个点,起点到每行的点连流量等于这行的和的边,每列的点连流量等于这列的和的边到终点,每行的点连到每列的点流量为K的点。所有行的和不等于所有列的和 或 最大流不等于所有行的和 则无解。有解的话再判有没有环,有环说明多解,可以dfs判环。

我这题卡了好久,判环的地方怒有问题,后来我看别人代码,只用从1~nr(行数)作为起始位置就能判完,也就是从行的节点开始,如果所有节点都开始一发的话会超时……我觉得再开点东西来记忆的话应该可以更快点,日后再说吧。

日后:

有了更好的删边判环方法,具体见一道几乎相同的题的题解:http://www.cnblogs.com/yuiffy/p/3929369.html

因为要删边判环,边被删了不好输出结果,所以先记录结果再删就好啦。速度快得飞起来。

(我的网络流是n个点,下标1~n的ISAP+GAP+CUR,怕不怕)

日前代码:

 #include<cstdio>
#include<cmath>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<map>
#include<set>
using namespace std;
#define ll __int64
#define usint unsigned int
#define RE freopen("1002.in","r",stdin)
#define WE freopen("1002my.out","w",stdout) int ans;
int r[],co[];
int k,nr,nc;
int sumr,sumc;
const int maxn=;//点数
const int maxm=;//边数
const int inf=0x7fffffff;//MAXINT
struct vnode {
int v,next;
int cap;
};
int cnt,head[maxn];
int h[maxn],g[maxn],d[maxn];//g[i]为标号为i的结点个数,h[i]为i结点的标号,d[]当前弧优化,记录当前弧
bool found;
int n,m,st,ed;//n个点m条边
int augc,flow;//augc为增广路容量,flow为最大流
vnode e[maxm]; void add(int x,int y,int z) {
e[cnt].v=y;
e[cnt].cap=z;
e[cnt].next=head[x];
head[x]=cnt;
cnt++;
// if(cnt>=maxm|| x>=maxn||y>=maxn)
// {
// //cout<<x<<','<<y<<','<<z<<','<<cnt<<','<<head[x]<<','<<head[y]<<endl;
// getchar();
// }
e[cnt].v=x;
e[cnt].cap=;
e[cnt].next=head[y];
head[y]=cnt;
cnt++; } bool walked[maxn];
bool dfs(int x,int preE) {
//cout<<x<<',';
for (int i=head[x]; i!=-; i=e[i].next)//寻找容许边
{
if(i==(preE^))continue;
if (e[i].cap>) { //如果残留容量大于0,如果不是直接回头
if(walked[e[i].v])return true;
walked[e[i].v]=true;
if(dfs(e[i].v,i)) return true;
walked[e[i].v]=false;
}
}
//printf("(%d)out ",x);
//getchar();
return false;
} void aug(const int &m) {
int i,mini,minh=n-;
int augco=augc;
if (m==ed) { //如果当前结点为汇点
found=true;
flow+=augc; //增加流量
return;
}
for (i=d[m]; i!=-; i=e[i].next) { //寻找容许边
//printf("m=%d,i=%d,e[i].v=%d,e[i].cap=%d,e[i].next=%d\n",m,i,e[i].v,e[i].cap,e[i].next);
//getchar();
if (e[i].cap && h[e[i].v]+==h[m]) { //如果残留容量大于0,如果是容许边
if (e[i].cap < augc) augc=e[i].cap;//如果容许边流量小于当前增广路流量 则更新增广路流量
d[m]=i; //把i定为当前弧
aug(e[i].v); //递归
if (h[st]>=n) return; //GAP 如果源点距离标号大于n 则停止算法
if (found) break; //如果找到汇点 则退出寻找
augc=augco;//没找到就还原当前的流
}
}
if (!found) { //重标号
for (i=head[m]; i!=-; i=e[i].next) //找那个标号,这里不能用d[m]开始,不然会蛋疼
if (e[i].cap && h[e[i].v]<minh) {
minh=h[e[i].v];
mini=i;
}
g[h[m]]--; //GAP 距离为
if (!g[h[m]]) h[st]=n; //GAP
h[m]=minh+;
d[m]=mini;
g[h[m]]++; //GAP
} else {
//修改残量
e[i].cap-=augc;
e[i^].cap+=augc;
}
} void farm() {
int i,j,x,y,z;
memset(head,-,sizeof(head));
cnt=;
n=nc+nr+;
st=n-;
ed=n;
for(i=nc; i>=; i--)
add(st,i,co[i-]);
for(i=nr; i>=; i--)
add(nc+i,ed,r[i-]);
for(i=nc; i>=; i--)
for(j=nr; j>=; j--)
add(i,nc+j,k);
//printf("cnt=%d\n",cnt);
memset(h,,sizeof(h));
memset(g,,sizeof(g));
g[]=n;
flow=;
//printf("st=%d,head[st]=%d\n",st,head[st]);
for(i=; i<=n; i++)
d[i]=head[i];//当前弧初始化
while(h[st]<n) {
augc=inf;//初始化增广路容量为正无穷大
found=false;
aug(st);//从源点开始找
}
if(flow!=sumr) {ans=;return;}
//printf("%d\n",flow);
memset(walked,false,sizeof(walked));
for(i=;i<=nr;i++) ///Why is nr?
{
//printf("start dfs(%d)\n",i);
if(dfs(i,-)) {ans=;return;}
}
ans=;
//printf("%d\n",flow);
} int main() {
//RE;
//WE;
int i,j;
while(scanf("%d%d%d",&nr,&nc,&k)!=EOF) {
sumr=;sumc=;
for(i=; i<nr; i++)
{
scanf("%d",&r[i]);
sumr+=r[i];
}
for(i=; i<nc; i++)
{
scanf("%d",&co[i]);
sumc+=co[i];
}
ans=;
if(sumr==sumc)farm();
if(ans==) printf("Impossible\n");
else if(ans!=) {
printf("Not Unique\n");
// for(i=1; i<=nr; i++) {
// for(j=head[nc+i]; j!=-1; j=e[j].next)
// {
// if(e[j].v==ed)continue;
// printf("%d ",e[j].cap);
// }
// puts("");
// }
} else {
printf("Unique\n");
for(i=; i<=nr; i++) {
for(j=head[nc+i]; j!=-; j=e[j].next) {
if(e[j].v==ed)continue;
printf("%d",e[j].cap);
int thenext=e[j].next;
while(thenext!=-&&e[thenext].v==ed)thenext=e[thenext].next;
if(thenext!=-)putchar(' ');
}
puts("");
}
}
}
//cout<<"end";
return ;
}

日后代码

 //#pragma comment(linker, "/STACK:102400000,102400000")
#include<cstdio>
#include<cmath>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<map>
#include<set>
#include<stack>
#include<queue>
using namespace std;
#define ll long long
#define usll unsigned ll
#define mz(array) memset(array, 0, sizeof(array))
#define minf(array) memset(array, 0x3f, sizeof(array))
#define REP(i,n) for(i=0;i<(n);i++)
#define FOR(i,x,n) for(i=(x);i<=(n);i++)
#define RD(x) scanf("%d",&x)
#define RD2(x,y) scanf("%d%d",&x,&y)
#define RD3(x,y,z) scanf("%d%d%d",&x,&y,&z)
#define WN(x) prllf("%d\n",x);
#define RE freopen("1002.in","r",stdin)
#define WE freopen("1002testout.txt","w",stdout)
#define mp make_pair
#define pb push_back int ans;
int r[],co[];
int k,nr,nc;
int sumr,sumc;
const int maxn=;//点数
const int maxm=;//边数
const int inf=0x7fffffff;//MAXINT
struct vnode {
int v,next;
int cap;
};
int cnt,head[maxn];
int h[maxn],g[maxn],d[maxn];//g[i]为标号为i的结点个数,h[i]为i结点的标号,d[]当前弧优化,记录当前弧
bool found;
int n,m,st,ed;//n个点m条边
int augc,flow;//augc为增广路容量,flow为最大流
vnode e[maxm]; int an[maxn][maxn]; void add(int x,int y,int z) {
e[cnt].v=y;
e[cnt].cap=z;
e[cnt].next=head[x];
head[x]=cnt;
cnt++;
// if(cnt>=maxm|| x>=maxn||y>=maxn)
// {
// //cout<<x<<','<<y<<','<<z<<','<<cnt<<','<<head[x]<<','<<head[y]<<endl;
// getchar();
// }
e[cnt].v=x; e[cnt].cap=;
e[cnt].next=head[y];
head[y]=cnt;
cnt++; } bool walked[maxn];
bool dfs(const int &x,const int &prex) {///深搜判环
int biu=-;
walked[x]=true;
for (int i=head[x]; i!=-; i=e[i].next) {
if(e[i].v==prex) {
biu=i;
continue;
}
if (e[i].cap>) {
if(walked[e[i].v]) return true;
if(dfs(e[i].v,x)) return true;
}
if(biu==-) head[x]=e[i].next;///删边,因为走了这条边却没发现环
else e[biu].next=e[i].next;
biu=i;
}
walked[x]=false;
return false;
} void aug(const int &m) {
int i,mini,minh=n-;
int augco=augc;
if (m==ed) { //如果当前结点为汇点
found=true;
flow+=augc; //增加流量
return;
}
for (i=d[m]; i!=-; i=e[i].next) { //寻找容许边
//printf("m=%d,i=%d,e[i].v=%d,e[i].cap=%d,e[i].next=%d\n",m,i,e[i].v,e[i].cap,e[i].next);
//getchar();
if (e[i].cap && h[e[i].v]+==h[m]) { //如果残留容量大于0,如果是容许边
if (e[i].cap < augc) augc=e[i].cap;//如果容许边流量小于当前增广路流量 则更新增广路流量
d[m]=i; //把i定为当前弧
aug(e[i].v); //递归
if (h[st]>=n) return; //GAP 如果源点距离标号大于n 则停止算法
if (found) break; //如果找到汇点 则退出寻找
augc=augco;//没找到就还原当前的流
}
}
if (!found) { //重标号
for (i=head[m]; i!=-; i=e[i].next) //找那个标号,这里不能用d[m]开始,不然会蛋疼
if (e[i].cap && h[e[i].v]<minh) {
minh=h[e[i].v];
mini=i;
}
g[h[m]]--; //GAP 距离为
if (!g[h[m]]) h[st]=n; //GAP
h[m]=minh+;
d[m]=mini;
g[h[m]]++; //GAP
} else {
//修改残量
e[i].cap-=augc;
e[i^].cap+=augc;
}
} void farm() {
int i,j,x,y,z;
memset(head,-,sizeof(head));
cnt=;
n=nc+nr+;
st=n-;
ed=n;
for(i=nc; i>=; i--)
add(st,i,co[i-]);
for(i=nr; i>=; i--)
add(nc+i,ed,r[i-]);
for(i=nc; i>=; i--)
for(j=nr; j>=; j--)
add(i,nc+j,k);
//printf("cnt=%d\n",cnt);
memset(h,,sizeof(h));
memset(g,,sizeof(g));
g[]=n;
flow=;
//printf("st=%d,head[st]=%d\n",st,head[st]);
for(i=; i<=n; i++)
d[i]=head[i];//当前弧初始化
while(h[st]<n) {
augc=inf;//初始化增广路容量为正无穷大
found=false;
aug(st);//从源点开始找
}
if(flow!=sumr) {
ans=;
return;
}
//printf("%d\n",flow);
for(i=; i<=nr; i++) {
int k=;
for(j=head[nc+i]; j!=-; j=e[j].next) {
if(e[j].v==ed)continue;
an[i][k++]=e[j].cap;
int thenext=e[j].next;
while(thenext!=-&&e[thenext].v==ed)thenext=e[thenext].next;
}
}
memset(walked,false,sizeof(walked));
for(i=nr; i>=; i--) { ///Why is nr?
//printf("start dfs(%d)\n",i);
if(dfs(i,-)) {
ans=;
return;
}
}
ans=;
//printf("%d\n",flow);
} int main() {
//RE;
//WE;
int i,j;
while(scanf("%d%d%d",&nr,&nc,&k)!=EOF) {
sumr=;
sumc=;
for(i=; i<nr; i++) {
scanf("%d",&r[i]);
sumr+=r[i];
}
for(i=; i<nc; i++) {
scanf("%d",&co[i]);
sumc+=co[i];
}
ans=;
if(sumr==sumc)farm();
if(ans==) printf("Impossible\n");
else if(ans!=) {
printf("Not Unique\n");
// for(i=1; i<=nr; i++) {
// for(j=head[nc+i]; j!=-1; j=e[j].next)
// {
// if(e[j].v==ed)continue;
// printf("%d ",e[j].cap);
// }
// puts("");
// }
} else {
printf("Unique\n");
for(i=; i<=nr; i++) {
if(nc>=)printf("%d",an[i][]);
for(j=; j<=nc; j++) {
printf(" %d",an[i][j]);
}
puts("");
}
}
}
//cout<<"end";
return ;
}

hdu4888 Redraw Beautiful Drawings 最大流+判环的更多相关文章

  1. HDU4888 Redraw Beautiful Drawings(2014 Multi-University Training Contest 3)

    Redraw Beautiful Drawings Time Limit: 3000/1500 MS (Java/Others)    Memory Limit: 65536/65536 K (Jav ...

  2. HDU4888 Redraw Beautiful Drawings(最大流唯一性判定:残量网络删边判环)

    题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=4888 Description Alice and Bob are playing toget ...

  3. hdu 4888 Redraw Beautiful Drawings(最大流,判环)

    pid=4888">http://acm.hdu.edu.cn/showproblem.php?pid=4888 加入一个源点与汇点,建图例如以下: 1. 源点 -> 每一行相应 ...

  4. hdu4888 Redraw Beautiful Drawings(最大流)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4888 题意:给一个矩阵没行的和和每列的和,问能否还原矩阵,如果可以还原解是否唯一,若唯一输出该矩阵. ...

  5. hdu 4888 Redraw Beautiful Drawings 最大流

    好难好难,将行列当成X和Y,源汇点连接各自的X,Y集,容量为行列的和,相当于从源点流向每一行,然后分配流量给每一列,最后流入汇点,这样执意要推断最后是否满流,就知道有没有解,而解就是每一行流向每一列多 ...

  6. hdu4888 Redraw Beautiful Drawings

    14更多学校的第二个问题 网络流量   分别以行,列作为结点建图 i行表示的结点到j列表示的结点的流量便是(i, j)的值 跑遍最大流   若满流了便是有解   推断是否unique  就是在残余网络 ...

  7. Redraw Beautiful Drawings(hdu4888)网络流+最大流

    Redraw Beautiful Drawings Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 65536/65536 K (Java/O ...

  8. HDU Redraw Beautiful Drawings 推断最大流是否唯一解

    点击打开链接 Redraw Beautiful Drawings Time Limit: 3000/1500 MS (Java/Others)    Memory Limit: 65536/65536 ...

  9. 【HDU】4888 Redraw Beautiful Drawings 网络流【推断解是否唯一】

    传送门:pid=4888">[HDU]4888 Redraw Beautiful Drawings 题目分析: 比赛的时候看出是个网络流,可是没有敲出来.各种反面样例推倒自己(究其原因 ...

随机推荐

  1. vijos2001 xor-sigma

    本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000作者博客:http://www.cnblogs.com/ljh2000-jump/转 ...

  2. hdu 5233 离散化

    10^9的大数组显然开不了.所以也算比较裸的离散化了... 令pos[i].pp[j]表示从左到右第j个高度为i的树的位置 (pp是个vector,范围0..now-1) pos[i].num表示有几 ...

  3. poj2187 旋转卡(qia)壳(ke)

    题意:求凸包的直径 关于对踵点对.旋转卡壳算法的介绍可以参考这里: http://www.cnblogs.com/Booble/archive/2011/04/03/2004865.html http ...

  4. 一起买beta版模块单元测试

    一起买beta版模块接口单元测试 测试目的 保证代码质量,对各个模块进行单元测试,不仅可以有效地保证代码的可靠性,让模块在与别的模块整合时出现更少的错误. 而且不用每次启动程序而等待浪费时间. 单元描 ...

  5. Ubuntu学习总结-05 安装和学习MySQL

    1 更新源列表 在终端窗口输入以下命令更新安装源. sudo apt-get update 效果如下图所示: 2 安装MySQL 在终端输入如下命令安装MySQL, sudo apt-get inst ...

  6. JavaWeb---总结(十二)Session

    一.Session简单介绍 在WEB开发中,服务器可以为每个用户浏览器创建一个会话对象(session对象),注意:一个浏览器独占一个session对象(默认情况下).因此,在需要保存用户数据时,服务 ...

  7. js012-DO2和DOM3

    js012-DO2和DOM3 本章内容: DOM2和DOM3的变化 操作样式的ODM API DOM 遍历与范围 DOM2级核心:在一级核心基础上构建,为节点添加了更多方法和属性 DOM2级视图:为文 ...

  8. vs------各种错误解决方法

    错误:命名空间System.Net中不存在类型或命名空间名“Http”,或工程里面“引用”的文件太少 转载:http://www.asp.net/mvc/mvc4 错误:LD.exe 已退出,代码为- ...

  9. Spring MVC学习笔记——注解式控制器

  10. Java 6.15习题

    1.定义一个ClassName接口,接口中只有一个抽象方法getClassName();设计一个类Company,该类实现接口ClassName中的方法getClassName(),功能是获取该类的类 ...