ZOJ 2332 online stream English Reading questions

Source: Internet
Author: User

Question:

Someone has a lot of gems, various colors and shapes. The person has the power to change the gem and make it change a color and shape. The man wants to send the gem to his girlfriend. He has an upper limit on each shape of the gem and an upper limit on each color of the gem that his girlfriend has endured. Could you please make the person send the gem to his girlfriend so that both of them are satisfied?


Ideas:

My thinking is wrong. As shown in the first code below, I write it like this:

BF first tries to endure the same shape of the gem, and then it will flow to his girlfriend. When he is full, he can tolerate it completely, his girlfriend can absorb all the precious stones he can't stand. This is a qualified condition. However, my thinking is wrong, because BF can change the gem when the initial stream is started, so that my girlfriend can accept it as much as possible, but I do not have this step in my thinking, he is directed to his girlfriend.

In fact, the question can be done as follows:

A pile of gems are distributed to BF, GF, BF, and GF. When the gemstone can be divided, isn't it Yes! In this case, the figure is as follows: 1Y.

#include<iostream>#include<cstdio>#include<string.h>#include<cstdlib>#define MN 230#define INF 0x00FFFFFF#define CC(what) memset( what,0,sizeof(what) )#define FF(i,M) for( int i=0;i<M;i++ )template<class T> void inline checkmin( T&a,T b ){ if( a>b||a==-1 ) a=b; }using namespace std;int R,C,s,t;int m[11][11],maze[MN][MN];int cntR[11],cntC[11],limR[11],limC[11];void setG(){     int r1,c1,r2,c2,u,v,k;     CC(cntR),CC(cntC),CC(maze),CC(limR),CC(limC);     scanf( "%d%d",&R,&C );     FF(i,R)FF(j,C){          scanf( "%d",&m[i][j] );          cntR[i]+=m[i][j];          cntC[j]+=m[i][j];     }     scanf( "%d",&k );     FF(i,k){          scanf( "%d%d%d%d",&r1,&c1,&r2,&c2 );          u=R+C+1+r1*C+c1;          v=R+C+1+r2*C+c2;          maze[u][v]=maze[v][u]=INF;     }     FF(i,R) scanf( "%d",&limR[i] );     FF(i,C) scanf( "%d",&limC[i] );     s=0;t=R+C+R*C+1;     FF(i,R) if( cntR[i]-limR[i]>0 )  maze[s][i+1]=cntR[i]-limR[i];     FF(i,C) maze[R+1+i][t]=limC[i];     FF(i,R) FF(j,C){             v=R+C+1+i*C+j;             maze[i+1][v]=INF;             maze[v][R+j+1]=INF;     }}int cur[MN],pre[MN],dis[MN],gap[MN];int sap(){    CC(cur),CC(dis),CC(gap);    int u=pre[s]=s,maxflow=0,aug=-1;    gap[0]=t+1;    while( dis[s]<=t ){loop:           for( int v=cur[u];v<=t;v++ )           if( maze[u][v]&&dis[u]==dis[v]+1 )           {               cur[u]=v;               checkmin( aug,maze[u][v] );               pre[v]=u;               u=v;               if( v==t )               {                   maxflow+=aug;                   for( u=pre[u];v!=s;v=u,u=pre[u] )                   {                        maze[u][v]-=aug;                        maze[v][u]+=aug;                   }                   aug=-1;               }               goto loop;           }           int mind=t;           for( int v=0;v<=t;v++ )           if( maze[u][v]&&mind>dis[v] )           {               cur[u]=v;               mind=dis[v];           }           if( --gap[dis[u]]==0 )break;           gap[dis[u]=mind+1]++;           u=pre[u];     }    return maxflow;}bool work(){     int KK=0;     FF(i,R) if( cntR[i]-limR[i]>0 )  KK+=cntR[i]-limR[i];     if( KK==sap() ) return true;     else return false;}int main(){    int T;    scanf( "%d",&T );    while( T-- )    {           setG();           if( work() ) printf( "Yes\n" );           else printf( "No\n" );           //getchar();    }    return 0;} 

#include<iostream>#include<cstdio>#include<string.h>#include<cstdlib>#define MN 230#define INF 0x00FFFFFF#define CC(what) memset( what,0,sizeof(what) )#define FF(i,M) for( int i=0;i<M;i++ )template<class T> void inline checkmin( T&a,T b ){ if( a>b||a==-1 ) a=b; }using namespace std;int R,C,s,t,total;int m[11][11],maze[MN][MN];int cntR[11],cntC[11],limR[11],limC[11];void setG(){     int r1,c1,r2,c2,u,v,k;     CC(maze);     scanf( "%d%d",&R,&C ); s=0;t=R+C+R*C+3; int BF=R+C+R*C+1,GF=R+C+R*C+2; total=0;     FF(i,R)FF(j,C){          u=R+C+1+i*C+j;          scanf( "%d",&maze[s][u] );          total+=maze[s][u];          //cntR[i]+=m[i][j];          //cntC[j]+=m[i][j];     }     scanf( "%d",&k );     FF(i,k){          scanf( "%d%d%d%d",&r1,&c1,&r2,&c2 );          u=R+C+1+r1*C+c1;          v=R+C+1+r2*C+c2;          maze[u][v]=maze[v][u]=INF;     }     FF(i,R) scanf( "%d",&maze[i+1][BF] );     FF(i,C) scanf( "%d",&maze[R+i+1][GF] );     FF(i,R) FF(j,C){             v=R+C+1+i*C+j;             maze[v][i+1]=INF;             maze[v][R+j+1]=INF;     }     maze[BF][t]=maze[GF][t]=INF;}int cur[MN],pre[MN],dis[MN],gap[MN];int sap(){    CC(cur),CC(dis),CC(gap);    int u=pre[s]=s,maxflow=0,aug=-1;    gap[0]=t+1;    while( dis[s]<=t ){loop:           for( int v=cur[u];v<=t;v++ )           if( maze[u][v]&&dis[u]==dis[v]+1 )           {               cur[u]=v;               checkmin( aug,maze[u][v] );               pre[v]=u;               u=v;               if( v==t )               {                   maxflow+=aug;                   for( u=pre[u];v!=s;v=u,u=pre[u] )                   {                        maze[u][v]-=aug;                        maze[v][u]+=aug;                   }                   aug=-1;               }               goto loop;           }           int mind=t;           for( int v=0;v<=t;v++ )           if( maze[u][v]&&mind>dis[v] )           {               cur[u]=v;               mind=dis[v];           }           if( --gap[dis[u]]==0 )break;           gap[dis[u]=mind+1]++;           u=pre[u];     }    return maxflow;}bool work(){     if( total==sap() ) return true;     else return false;}int main(){    int T;    scanf( "%d",&T );    while( T-- )    {           setG();           if( work() ) printf( "Yes\n" );           else printf( "No\n" );           //getchar();    }    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.