CSU1569 Wet Tiles

来源:互联网 发布:外汇行情软件哪个好 编辑:程序博客网 时间:2024/06/04 23:22

Wet Tiles

Description

Alice owns a construction company in the town of Norainia, famous for its unusually dry weather. In fact, it only rains a few days per year there. Because of this phenomenon, many residents of Norainia neglect to do roof repairs until leaks occur and ruin their floors. Every year, Alice receives a deluge of calls from residents who need the leaks fixed and floor tiles replaced. While exquisite in appearance, Norainia floor tiles are not very water resistant; once a tile becomes wet, it is ruined and must be replaced. This year, Alice plans to handle the rainy days more efficiently than in past years. She will hire extra contractors to dispatch as soon as the calls come in, so hopefully all leaks can be repaired as soon as possible. For each house call, Alice needs a program to help her determine how many replacement tiles a contractor team will need to bring to complete the job.

For a given house, square floor tiles are arranged in a rectangular grid. Leaks originate from one or more known source locations above specific floor tiles. After the first minute, the tiles immediately below the leaks are ruined. After the second minute, water will have spread to any tile that shares an edge with a previously wet tile. This pattern of spreading water continues for each additional minute. However, the walls of a house restrict the water; if a damaged area hits a wall, the water does not penetrate the wall. We assume there are always four outer walls surrounding the entire house. A house may also have a number of additional "inner" walls; each inner wall is comprised of a connected linear sequence of locations (which may or may not be connected to the outer walls or to each other).

As an example, Figure 1 shows water damage (in gray) that would result from three initial leaks (each marked with a white letter 'L') after each of the first five minutes of time. Tiles labeled '2' become wet during the second minute, tiles labeled '3' become wet during the third minute, and so forth. The black areas designate inner walls that restrict the flow of water. Note that after 5 minutes, a total of 75 tiles have been damaged and will need to be replaced. Figures 2 through 4 show other houses that correspond to the example inputs for this problem.

75 wet tiles

17 wet tiles

4 wet tiles

94 wet tiles

Input

 Each house is described beginning with a line having five integral parameters: X Y T L W. Parameters X and Y designate the dimensions of the rectangular grid, with 1 ≤ X ≤ 1000 and 1 ≤ Y ≤ 1000. The coordinate system is one-indexed, as shown in the earlier figures. Parameter T designates the number of minutes that pass before a team of contractors arrives at a house and stops the leaks, with 1 ≤ T ≤ 200000. The parameter L designates the number of leaks, with 1 ≤ L ≤ 100. Parameter W designates the number of inner walls in the house, 0 ≤ W ≤ 100.

The following 2L integers in the data set, on one or more lines, are distinct (x y) pairs that designate the locations of the L distinct leaks, such that 1 ≤ x ≤ X and 1 ≤ y ≤ Y.

If W > 0, there will be 4W additional integers, on one or more lines, that describe the locations of the walls. For each such wall the four parameters (x1,y1), (x2,y2) describe the locations of two ends of the wall. Each wall replaces a linear sequence of adjoining tiles and is either axis-aligned or intersects both axes at a 45 degree angle. Diagonal walls are modeled as a sequence of cells that would just be touching corner to corner. If the two endpoints of a wall are the same, the wall just occupies the single cell at that location. Walls may intersect with each other, but no leak is over a wall.

There will be one or more houses in the data file and a line with a single integer -1 designates the end of the data set.

Output

 For each house, display the total number of tiles that are wet after T minutes.

Sample Input

12 12 5 3 52 11 3 3 9 51 9 6 9 1 7 4 4 7 1 7 410 9 10 12 11 4 12 49 7 8 1 34 32 2 6 6 6 2 2 6 8 2 8 26 7 50 1 33 42 2 2 6 3 6 5 4 5 4 3 212 12 5 3 02 11 3 3 9 5-1

Sample Output

7517494

————————————————————————————

题目的意思是给出n个点,个m调障碍线,每个点每单位时间会上下左右扩散一格,问t单位时间后的染色格子
思路: 先预处理出障碍的格子标记,在BFS搜索,把所有的点先扔进去  不能一个一个搜,不然可能会使得某个点从一个点到达远,从另一个点到达近而使得它能到达的点搜不到

#include <iostream>#include <cstdio>#include <cstring>#include <string>#include <algorithm>#include <cmath>#include <map>#include <set>#include <stack>#include <queue>#include <vector>#include <bitset>using namespace std;#define ll long longconst int INF = 0x3f3f3f3f;#define mod 10000007#define mem(a,b) memset(a,b,sizeof a)int vis[1005][1005];int dir[4][2]= {{-1,0},{1,0},{0,-1},{0,1}};int n,m,T,ans,x,y;struct node{    int x,y,t;} p[1000];bool check(int x,int y){    if(x<1||y<1||x>m||y>n||vis[x][y]==1)        return 0;    return 1;}void bfs(){    queue<node>q;    node f,d;    for(int i=0;i<x;i++)    {         q.push(p[i]);         vis[p[i].x][p[i].y]=1;    }    while(!q.empty())    {        f=q.front();        q.pop();        for(int i=0; i<4; i++)        {            int xx=f.x+dir[i][0];            int yy=f.y+dir[i][1];            if(check(xx,yy)&&f.t<T)            {                d.x=xx;                d.y=yy;                d.t=f.t+1;                ans++;                vis[xx][yy]=1;                q.push(d);            }        }    }}int main(){    int xx1,xx2,yy1,yy2;    while(~scanf("%d",&n)&&n!=-1)    {        scanf("%d%d%d%d",&m,&T,&x,&y);        mem(vis,0);        for(int i=0; i<x; i++)        {            scanf("%d%d",&p[i].y,&p[i].x);            p[i].t=1;        }        for(int i=0; i<y; i++)        {            scanf("%d%d%d%d",&yy1,&xx1,&yy2,&xx2);            if(xx1==xx2)            {                for(int i=min(yy1,yy2); i<=max(yy1,yy2); i++)                    vis[xx1][i]=1;            }            else            {                if(xx1>xx2)                {                    swap(xx1,xx2);                    swap(yy1,yy2);                }                for(int j=xx1; j<=xx2; j++)                {                    vis[j][yy1+(j-xx1)*(yy1==yy2?0:(yy1>yy2?-1:1))]=1;                }            }        }        ans=x;       bfs();        printf("%d\n",ans);    }    return 0;}