Leapin‘ Lizards |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) |
Total Submission(s): 16 Accepted Submission(s): 7 |
Problem Description Your platoon of wandering lizards has entered a strange room in the labyrinth you are exploring. As you are looking around for hidden treasures, one of the rookies steps on an innocent-looking stone and the room‘s floor suddenly disappears! Each lizard in your platoon is left standing on a fragile-looking pillar, and a fire begins to rage below... Leave no lizard behind! Get as many lizards as possible out of the room, and report the number of casualties. |
Input The input file will begin with a line containing a single integer representing the number of test cases, which is at most 25. Each test case will begin with a line containing a single positive integer n representing the number of rows in the map, followed by a single non-negative integer d representing the maximum leaping distance for the lizards. Two maps will follow, each as a map of characters with one row per line. The first map will contain a digit (0-3) in each position representing the number of jumps the pillar in that position will sustain before collapsing (0 means there is no pillar there). The second map will follow, with an ‘L‘ for every position where a lizard is on the pillar and a ‘.‘ for every empty pillar. There will never be a lizard on a position where there is no pillar.Each input map is guaranteed to be a rectangle of size n x m, where 1 ≤ n ≤ 20 and 1 ≤ m ≤ 20. The leaping distance is |
Output For each input case, print a single line containing the number of lizards that could not escape. The format should follow the samples provided below. |
Sample Input 4 3 1 1111 1111 1111 LLLL LLLL LLLL 3 2 00000 01110 00000 ..... .LLL. ..... 3 1 00000 01110 00000 ..... .LLL. ..... 5 2 00000000 02000000 00321100 02000000 00000000 ........ ........ ..LLLL.. ........ ........ |
Sample Output Case #1: 2 lizards were left behind. Case #2: no lizard was left behind. Case #3: 3 lizards were left behind. Case #4: 1 lizard was left behind. |
Source Mid-Central USA 2005 |
题意:
有n行的数字地图和字符地图,一只青蛙每次最多跳k单位长度,数字地图中的数字表示改点可以经过的次数,字符地图中L表示几只青蛙的初始位置,问有多少只青蛙跳不出地图。
注意这里的距离是abs(行号之差)+abs(列号之差)
代码:
//源点S编号0,网格的每个格子分成两个点i和i+n*m(n和m为网格的行和列数,其实i编号点是 //表示蜥蜴进来,而i+n*m编号的点是表示蜥蜴出去).汇点t编号n*m*2+1.如果格子i上有蜥蜴, //那么从s到i有边(s,i,1).如果格子i能承受x次跳出,那么有边(i,i+n*m,x)如果从格子i能直 //接跳出网格边界,那么有边(i+n*m,t,inf)如果从格子i不能直接跳出网格,那么从i到离i距离 //<=d的网格j有边(i+n*m,j,inf). //最终我们求出的最大流就是能跳出网格的蜥蜴数. #include<iostream> #include<cstdio> #include<cstring> #include<vector> #include<queue> #include<cmath> using namespace std; const int maxn=888,inf=0x7fffffff; struct edge{ int from,to,cap,flow; edge(int u,int v,int c,int f):from(u),to(v),cap(c),flow(f){} }; struct dinic{ int n,m,s,t; vector<edge>edges; vector<int>g[maxn]; bool vis[maxn]; int d[maxn]; int cur[maxn]; void init(int n){ this->n=n; for(int i=0;i<n;i++) g[i].clear(); edges.clear(); } void addedge(int from,int to,int cap){ edges.push_back(edge(from,to,cap,0)); edges.push_back(edge(to,from,0,0));//反向弧 m=edges.size(); g[from].push_back(m-2); g[to].push_back(m-1); } bool bfs(){ memset(vis,0,sizeof(vis)); queue<int>q; q.push(s); d[s]=0; vis[s]=1; while(!q.empty()){ int x=q.front();q.pop(); for(int i=0;i<(int)g[x].size();i++){ edge&e=edges[g[x][i]]; if(!vis[e.to]&&e.cap>e.flow){ vis[e.to]=1; d[e.to]=d[x]+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<(int)g[x].size();i++){ edge&e=edges[g[x][i]]; if(d[x]+1==d[e.to]&&(f=dfs(e.to,min(a,e.cap-e.flow)))>0){ e.flow+=f; edges[g[x][i]^1].flow-=f; flow+=f; a-=f; if(a==0) break; } } return flow; } int maxflow(int s,int t){ this->s=s;this->t=t; int flow=0; while(bfs()){ memset(cur,0,sizeof(cur)); flow+=dfs(s,inf); } return flow; } }dc; int main() { int t,n,m,k; char mp[25][25],ch[25]; scanf("%d",&t); for(int h=1;h<=t;h++){ scanf("%d%d",&n,&k); for(int i=1;i<=n;i++) scanf("%s",mp[i]); m=strlen(mp[1]); int s=0,t=n*m*2+1,sum=0; dc.init(n*m*2+2); for(int i=1;i<=n;i++){ scanf("%s",ch); for(int j=0;j<m;j++){ if(ch[j]==‘L‘) {dc.addedge(s,(i-1)*m+j+1,1);sum++;} } } for(int i=1;i<=n;i++) for(int j=0;j<m;j++){ if(mp[i][j]==‘0‘) continue; dc.addedge((i-1)*m+j+1,(i-1)*m+j+1+n*m,mp[i][j]-‘0‘); if(i<=k||i+k>n||j<k||j+k>=m) dc.addedge((i-1)*m+j+1+n*m,t,inf); else{ for(int x=1;x<=n;x++) for(int y=0;y<m;y++){ if(mp[i][j]==‘0‘) continue; if(x==i&&y==j) continue; if((abs(i-x)+abs(j-y))<=k) dc.addedge((i-1)*m+j+1+n*m,(x-1)*m+y+1,inf); } } } int ans=sum-dc.maxflow(s,t); if(ans==0) printf("Case #%d: no lizard was left behind.\n",h); else if(ans==1) printf("Case #%d: %d lizard was left behind.\n",h,ans); else printf("Case #%d: %d lizards were left behind.\n",h,ans); } return 0; }