【UVALive - 5131】Chips Challenge(上下界循环费用流)

时间:2022-02-18 23:25:20

Description

A prominent microprocessor company has enlisted your help to lay out some interchangeable components
(widgets) on some of their computer chips. Each chip’s design is an N × N square of slots. One
slot can hold a single component, and you are to try to fit in as many widgets as possible.
Modern processor designs are complex, of course. You unfortunately have several restrictions:
• Some of the slots are disabled.
• Some of the slots are already occupied by other components and cannot be used for widgets.
• There are sibling memory buses connected to the horizontal and vertical edges of the chip and
their bandwidth loads need to match. As such, there must be exactly as many components in
the first row as in the first column, exactly as many in the second row as in the second column,
and so on. Component counts include both the components already specified on the chip and the
added widgets.
• Similarly, the power supply is connected at the end of each row and column. To avoid hot spots,
any given row or column must have no more than A/B of the total components on the chip for
a given A and B.
A specification for a chip is N lines of N characters, where ‘.’ indicates an open slot, ‘/’ indicates
a disabled slot, and ‘C’ indicates a slot already occupied by a component. For example:
CC/..
././/
..C.C
/.C..
/./C/
If no more than 3/10 of the components may be in any one row or column, the maximum number of
widgets that can be added to this 5 × 5 chip is 7. A possible arrangement is below, where ‘W’ indicates
a widget added in an open slot.
CC/W.
W/W//
W.C.C
/.CWW
/W/C/erb

Input
The input consists of several test cases. Each case starts with a line containing three integers: The size
of the chip N (1 ≤ N ≤ 40), and A and B (1 ≤ B ≤ 1000, 0 ≤ A ≤ B) as described above. Each of the
following N lines contains N characters describing the slots, one of ‘.’, ‘/’ or ‘C’, as described above.
The last test case is followed by a line containing three zeros.

Output
For each test case, display a single line beginning with the case number. If there is a solution, display
the maximum number of widgets that can be added to the chip. Display ‘impossible’ if there is no
solution.
Follow the format of the sample output.

Sample Input
2 1 1
/.
//
2 50 100
/.
C/
2 100 100
./
C.
5 3 10
CC/..
././/
..C.C
/.C..
/./C/
5 2 10
CC/..
././/
..C.C
/.C..
/./C/
0 0 0

Sample Output
Case 1: 0
Case 2: 1
Case 3: impossible
Case 4: 7
Case 5: impossible

【题意】

  有一个n*n的矩阵(n<=40),每个位置有三种情况,/表示不能用,C表示这个位置有一个芯片,'.'表示这个位置可以放芯片,要求第i行的芯片总数等于第i列的芯片总数,每行或的每列的芯片总数不能超过总芯片数的A/B。

【分析】

  没有行列约束的时候直接行列建边。对于A/B的约束其实可以枚举行列的最大值然后加限制跑最大流(因为行很少)。不过有行等于列的约束,于是再建一条列到行的反向边,上限定为你枚举的约束,做循环流。因为循环流要加边而且判满流,所以要加一个费用才能计算,于是就是上下界循环费用流了。

 #include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
#define Maxn 10100
#define Maxm 1001000
#define INF 0xfffffff int map[][];
int first[Maxn],dis[Maxn],pre[Maxn],flow[Maxn];
char s[];
bool inq[Maxn]; int st,ed,sum,h;
int n,A,B; struct node
{
int x,y,f,c,o,next;
}t[Maxm];int len; int mymax(int x,int y) {return x>y?x:y;}
int mymin(int x,int y) {return x<y?x:y;} void ins(int x,int y,int f,int c)
{
if(f==) return;
if(x==st) sum+=f;
t[++len].x=x;t[len].y=y;t[len].f=f;t[len].c=c;
t[len].next=first[x];first[x]=len;t[len].o=len+;
t[++len].x=y;t[len].y=x;t[len].f=;t[len].c=-c;
t[len].next=first[y];first[y]=len;t[len].o=len-;
} void make_edge(int x,int y,int k1,int k2,int c)
{
ins(st,y,k2,);
ins(x,ed,k2,c);
ins(y,x,k2-k1,-c);
} queue<int > q;
bool bfs(int f1,int f2)
{
while(!q.empty()) q.pop();
memset(dis,-,sizeof(dis));
memset(inq,,sizeof(inq));
memset(pre,-,sizeof(pre));
inq[f1]=;q.push(f1);flow[f1]=INF;pre[f1]=;dis[st]=;
while(!q.empty())
{
int x=q.front();q.pop();
for(int i=first[x];i;i=t[i].next) if(t[i].f>)
{
int y=t[i].y;
if(dis[y]<dis[x]+t[i].c)
{
dis[y]=dis[x]+t[i].c;
if(!inq[y]) {q.push(y);inq[y]=;}
pre[y]=i;
flow[y]=mymin(flow[x],t[i].f);
}
}
inq[x]=;
}
if(pre[f2]==-) return ;
return flow[f2];
} int ffind(int x,int y)
{
int a,sc=,now;h=;
while(a=bfs(st,ed))
{
now=y;sc+=a*dis[y];
h+=a;
while(now!=x)
{
t[pre[now]].f-=a;
t[t[pre[now]].o].f+=a;
now=t[pre[now]].x;
}
}
return sc;
} int get_ans(int x)
{
st=*n+,ed=st+;
len=;sum=;
memset(first,,sizeof(first));
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
{
if(map[i][j]==) make_edge(i,j+n,,,);
else if(map[i][j]==) ins(i,j+n,,);
}
for(int i=;i<=n;i++) make_edge(i+n,i,,x,);
int a=ffind(st,ed);
if(h!=sum) return -;
if(x*B<=a*A) return a;
return -;
} int main()
{
int kase=;
while()
{
scanf("%d%d%d",&n,&A,&B);
if(n==&&A==&&B==) break;
bool ok=;
int sc=;
for(int i=;i<=n;i++)
{
scanf("%s",s);
for(int j=;j<n;j++)
{
if(s[j]=='/') map[i][j+]=;
else if(s[j]=='.') map[i][j+]=;
else map[i][j+]=,sc++;
}
}
for(int i=;i<=n;i++)
{
int s1=,s2=;
for(int j=;j<=n;j++)
{
if(map[i][j]==) s1++;
if(map[j][i]==) s2++;
}
if(s1!=s2||s1*B>sc*A||s2*B>sc*A) {ok=;break;}
}
printf("Case %d: ",++kase);
int maxx=-;
if(ok) maxx=sc;
for(int i=;i<=n;i++)
{
maxx=mymax(maxx,get_ans(i)); }
if(maxx!=-) maxx-=sc;
if(maxx==-) printf("impossible\n");
else printf("%d\n",maxx);
}
return ;
}

[LA5131]

2016-06-04 13:27:29