程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CF 538D(Weird Chess-反過來算)

CF 538D(Weird Chess-反過來算)

編輯:C++入門知識

CF 538D(Weird Chess-反過來算)


 

D. Weird Chess time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

Igor has been into chess for a long time and now he is sick of the game by the ordinary rules. He is going to think of new rules of the game and become world famous.

Igor's chessboard is a square of size n?×?n cells. Igor decided that simple rules guarantee success, that's why his game will have only one type of pieces. Besides, all pieces in his game are of the same color. The possible moves of a piece are described by a set of shift vectors. The next passage contains a formal description of available moves.

Let the rows of the board be numbered from top to bottom and the columns be numbered from left to right from 1 to n. Let's assign to each square a pair of integers (x,?y) — the number of the corresponding column and row. Each of the possible moves of the piece is defined by a pair of integers (dx,?dy); using this move, the piece moves from the field (x,?y) to the field (x?+?dx,?y?+?dy). You can perform the move if the cell (x?+?dx,?y?+?dy) is within the boundaries of the board and doesn't contain another piece. Pieces that stand on the cells other than (x,?y) and (x?+?dx,?y?+?dy) are not important when considering the possibility of making the given move (for example, like when a knight moves in usual chess).

Igor offers you to find out what moves his chess piece can make. He placed several pieces on the board and for each unoccupied square he told you whether it is attacked by any present piece (i.e. whether some of the pieces on the field can move to that cell). Restore a possible set of shift vectors of the piece, or else determine that Igor has made a mistake and such situation is impossible for any set of shift vectors.

Input

The first line contains a single integer n (1?≤?n?≤?50).

The next n lines contain n characters each describing the position offered by Igor. The j-th character of the i-th string can have the following values:

  • o — in this case the field (i,?j) is occupied by a piece and the field may or may not be attacked by some other piece;
  • x — in this case field (i,?j) is attacked by some piece;
  • . — in this case field (i,?j) isn't attacked by any piece.

    It is guaranteed that there is at least one piece on the board.

    Output

    If there is a valid set of moves, in the first line print a single word 'YES' (without the quotes). Next, print the description of the set of moves of a piece in the form of a (2n?-?1)?×?(2n?-?1) board, the center of the board has a piece and symbols 'x' mark cells that are attacked by it, in a format similar to the input. See examples of the output for a full understanding of the format. If there are several possible answers, print any of them.

    If a valid set of moves does not exist, print a single word 'NO'.

    Sample test(s) input
    5
    oxxxx
    x...x
    x...x
    x...x
    xxxxo
    
    output
    YES
    ....x....
    ....x....
    ....x....
    ....x....
    xxxxoxxxx
    ....x....
    ....x....
    ....x....
    ....x....
    
    input
    6
    .x.x..
    x.x.x.
    .xo..x
    x..ox.
    .x.x.x
    ..x.x.
    
    output
    YES
    ...........
    ...........
    ...........
    ....x.x....
    ...x...x...
    .....o.....
    ...x...x...
    ....x.x....
    ...........
    ...........
    ...........
    
    input
    3
    o.x
    oxx
    o.x
    
    output
    NO
    
    Note

    In the first sample test the piece is a usual chess rook, and in the second sample test the piece is a usual chess knight.



     

    把能取的攻擊范圍盡量取上,最後看是否和原圖一樣

     

     

     

    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    using namespace std;
    #define For(i,n) for(int i=1;i<=n;i++)
    #define Fork(i,k,n) for(int i=k;i<=n;i++)
    #define Rep(i,n) for(int i=0;i=0;i--)
    #define Forp(x) for(int p=pre[x];p;p=next[p])
    #define Lson (x<<1)
    #define Rson ((x<<1)+1)
    #define MEM(a) memset(a,0,sizeof(a));
    #define MEMI(a) memset(a,127,sizeof(a));
    #define MEMi(a) memset(a,128,sizeof(a));
    #define INF (2139062143)
    #define F (100000007)
    #define MAXN (100+10)
    #define MP make_pair
    long long mul(long long a,long long b){return (a*b)%F;}
    long long add(long long a,long long b){return (a+b)%F;}
    long long sub(long long a,long long b){return (a-b+(a-b)/F*F+F)%F;}
    typedef long long ll;
    int n;
    char s[MAXN];
    int a[MAXN][MAXN];
    bool b[MAXN][MAXN]={0};
    int d[MAXN][MAXN];
    vector > v;
    int &cx=n,&cy=n;
    int main()
    {
    //	freopen("d.in","r",stdin);
    //	freopen(".out","w",stdout);
    	
    	cin>>n;
    	For(i,n)
    	{
    		scanf("%s",s+1);
    		For(j,n) 
    		{
    			switch (s[j])
    			{
    				case'o':a[i][j]=2; v.push_back(MP(i,j)) ; break;
    				case'x':a[i][j]=1 ; break;
    				case'.':a[i][j]=0 ; break;
    			}
    		}
    	}
    	d[cx][cy]=2;
    	For(i,2*n-1)
    		For(j,2*n-1)
    		{
    			if (i==cx&&j==cy) continue;
    			int dx=i-cx,dy=j-cy;
    			bool flag=1;
    			for(vector >::iterator it=v.begin();it!=v.end();it++)
    			{
    				int x=it->first,y=it->second;
    				if (1<=x+dx&&x+dx<=n&&1<=y+dy&&y+dy<=n) 
    					if (!a[x+dx][y+dy])
    					{
    						flag=0;
    						break;
    					}
    			}
    			
    			d[i][j]=flag;
    	
    		}
    	
    	For(i,2*n-1)
    		For(j,2*n-1)
    		{
    			if (i==cx&&j==cy) continue;
    			if (!d[i][j]) continue;
    			int dx=i-cx,dy=j-cy;
    			for(vector >::iterator it=v.begin();it!=v.end();it++)
    			{
    				int x=it->first,y=it->second;
    				if (1<=x+dx&&x+dx<=n&&1<=y+dy&&y+dy<=n) 
    					b[x+dx][y+dy]=1;
    					
    			}
    		}
    	
    			For(i,n)
    				For(j,n)
    					if (a[i][j]!=2)
    						if (b[i][j]^a[i][j]) 
    						{
    							cout<<"NO"<

     

     

     

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved