[POJ 2396] Budget and poj21_budget

Source: Internet
Author: User

[POJ 2396] Budget and poj21_budget
Budget

Time Limit: 3000 MS Memory Limit: 65536 K
Total Submissions: 6317 Accepted: 2393 Special Judge
Description

We are supposed to make a budget proposal for this multi-site competition. the budget proposal is a matrix where the rows represent different kinds of expenses and the columns represent different sites. we had a meeting about this, some time ago where we discussed the sums over different kinds of expenses and sums over different sites. there was also some talk about special constraints: someone mentioned that Computer Center wowould need at least 2000 K Rials for food and someone from Sharif Authorities argued they wouldn't use more than 30000 K Rials for t-shirts. anyway, we are sure there was more; we will go and try to find some notes from that meeting.

And, by the way, no one really reads budget proposals anyway, so we'll just have to make sure that it sums up properly and meets all constraints.
Input

The first line of the input contains an integer N, giving the number of test cases. the next line is empty, then, test cases follow: The first line of each test case contains two integers, m and n, giving the number of rows and columns (m <= 200, n <= 20 ). the second line contains m integers, giving the row sums of the matrix. the third line contains n integers, giving the column sums of the matrix. the fourth line contains an integer c (c <1000) giving the number of constraints. the next c lines contain the constraints. there is an empty line after each test case.

Each constraint consists of two integers r and q, specifying some entry (or entries) in the matrix (the upper left corner is 1 1 and 0 is interpreted as "ALL", I. e. 4 0 means all entries on the fourth row and 0 0 means the entire matrix), one element from the set {<, =, >}and one integer v, with the obvious interpretation. for instance, the constraint 1 2> 5 means that the cell in the 1st row and 2nd column must have an entry strictly greater than 5, and the constraint 4 0 = 3 means that all elements in the fourth row shoshould be equal to 3.
Output

For each case output a matrix of non-negative integers meeting the above constraints or the string "IMPOSSIBLE" if no legal solution exists. Put one empty line between matrices.
Sample Input

2

2 3
8 10
5 6 7
4
0 2> 2
2 1 = 3
2 3> 2
2 3 <5

2 2
4 5
6 7
1
1 1> 10
Sample Output

2 3 3
3 3 4

IMPOSSIBLE

Source

Tehran 2003 Preliminary

The source sink has upstream and downstream feasible streams.

For details, see Network Flow Problems with upper and lower limits.

#include <iostream>#include <algorithm>#include <cstring>#include <cstdio>#include <cmath>#include <cstdlib>#include <queue>#define inf 0x3f3f3f3f#define M 500005using namespace std;int p;int cnt,tot,h[M],du[M],d[M],cur[M],v[M],down[205][205],up[205][205];int id[205][205],n,m,s,t,s1,t1;struct edge{    int from,to,cap,flow,ne;}E[M];void Clear(){    for (int i=s;i<=t;i++)        h[i]=0,du[i]=0;    for (int i=1;i<=n;i++)        for (int j=1;j<=m;j++)            down[i][j]=0,up[i][j]=inf;    tot=1;    cnt=0;}void Addedge(int from,int to,int cap){    E[++tot]=(edge){from,to,cap,0,h[from]};    h[from]=tot;    E[++tot]=(edge){to,from,0,0,h[to]};    h[to]=tot;}int Build(){    Addedge(t1,s1,inf);    p=tot-1;    for (int i=1;i<=n;i++)        for (int j=1;j<=m;j++)            if (down[i][j]>up[i][j]) return 0;            else            {                Addedge(i,n+j,up[i][j]-down[i][j]);                cnt+=down[i][j];                id[i][j]=tot-1;                Addedge(s,n+j,down[i][j]),Addedge(i,t,down[i][j]);            }    return 1;}int bfs(){    for (int i=0;i<=t;i++)        v[i]=0;    v[s]=1;    queue<int> q;    q.push(s);    d[s]=0;    while (!q.empty())    {        int x=q.front();        q.pop();        for (int i=h[x];i;i=E[i].ne)        {            edge e=E[i];            if (!v[e.to]&&e.cap>e.flow)            {                v[e.to]=1;                d[e.to]=d[x]+1;                q.push(e.to);            }        }    }    return v[t];}int dfs(int x,int a){    if (x==t||!a) return a;    int flow=0;    for (int &i=cur[x];i;i=E[i].ne)    {        edge &e=E[i];        if (d[e.to]!=d[x]+1) continue;        int f=dfs(e.to,min(a,e.cap-e.flow));        if (f>0)        {            e.flow+=f;            E[i^1].flow-=f;            a-=f;            flow+=f;            if (!a) break;        }    }    return flow;}int Dinic(){    int flow=0;    while (bfs())    {        for (int i=s;i<=t;i++)            cur[i]=h[i];        flow+=dfs(s,inf);    }    return flow==cnt;}int main(){    int T;    scanf("%d",&T);    while (T--)    {        scanf("%d%d",&n,&m);        s1=n+m+1,t1=n+m+2;        s=0,t=n+m+3;        Clear();        int sum1=0,sum2=0;        for (int i=1;i<=n;i++)        {            int x;            scanf("%d",&x);            sum1+=x;            Addedge(s,i,x),Addedge(s1,t,x);        }        for (int i=1;i<=m;i++)        {            int x;            scanf("%d",&x);            sum2+=x;            Addedge(s,t1,x),Addedge(i+n,t,x);        }        cnt=sum1+sum2;        int k;        scanf("%d",&k);        for (int i=1;i<=k;i++)        {            int x1,y1,j;            char ch[5];            scanf("%d%d%s%d",&x1,&y1,ch,&j);            int a,b,c,d;            a=b=x1,c=d=y1;            if (!a) a=1,b=n;            if (!c) c=1,d=m;            for (int x=a;x<=b;x++)                for (int y=c;y<=d;y++)                {                    if (ch[0]=='=')                        down[x][y]=max(down[x][y],j),up[x][y]=min(up[x][y],j);                    else if (ch[0]=='>')                        down[x][y]=max(down[x][y],j+1);                    else up[x][y]=min(up[x][y],j-1);                }        }        if (sum1==sum2&&Build()&&Dinic())        {            for (int i=1;i<=n;i++)            {                printf("%d",down[i][1]+E[id[i][1]].flow);                for (int j=2;j<=m;j++)                    printf(" %d",down[i][j]+E[id[i][j]].flow);                printf("\n");            }        }        else printf("IMPOSSIBLE\n");        printf("\n");    }    return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.