hdu5319 Painter(模拟题)

来源:互联网 发布:火烧赤壁的网络意思 编辑:程序博客网 时间:2024/05/29 03:32

C - Painter

 HDU - 5319 

Mr. Hdu is an painter, as we all know, painters need ideas to innovate , one day, he got stuck in rut and the ideas dry up, he took out a drawing board and began to draw casually. Imagine the board is a rectangle, consists of several square grids. He drew diagonally, so there are two kinds of draws, one is like ‘\’ , the other is like ‘/’. In each draw he choose arbitrary number of grids to draw. He always drew the first kind in red color, and drew the other kind in blue color, when a grid is drew by both red and blue, it becomes green. A grid will never be drew by the same color more than one time. Now give you the ultimate state of the board, can you calculate the minimum time of draws to reach this state.
Input
The first line is an integer T describe the number of test cases. 
Each test case begins with an integer number n describe the number of rows of the drawing board. 
Then n lines of string consist of ‘R’ ‘B’ ‘G’ and ‘.’ of the same length. ‘.’ means the grid has not been drawn. 
1<=n<=50 
The number of column of the rectangle is also less than 50. 
Output 
Output an integer as described in the problem description. 
Output
Output an integer as described in the problem description.
Sample Input
24RR.B.RG..BRRB..R4RRBBRGGBBGGRBBRR
Sample Output
36


  只能斜着画,如果某个位置是R 如果其左上角是R或者G 证明不用再多划一笔 如果是B 其右上角如果是B或者G 那也不用再多画一次 如果是G 那其左上角如果是R或者G 右上角如果是B或者G 就都不用多画一次了  大概照着这个思维打了一下 一直wa 后来发现是因为输入的N并不是代表N*N的矩阵 坑啊。。。。是输入N行 每行长度自定。。好吧没好好审题 改了之后就AC了。


#include<iostream>#include<string.h>#include<cstdio>using namespace std;char mp[100][100];int main() {int t,n;cin>>t;while(t--) {cin>>n;memset(mp,0,sizeof(mp));for(int i=1; i<=n; i++)scanf("%s",mp[i]+1);int m=strlen(mp[1]+1);int ans=0;for(int i=1; i<=n; i++)for(int j=1; j<=m; j++) {if(mp[i][j]=='R')if(!(mp[i-1][j-1]=='R'||mp[i-1][j-1]=='G')) ans++;}for(int i=1; i<=n; i++)for(int j=1; j<=m; j++) {if(mp[i][j]=='B')if(!(mp[i-1][j+1]=='B'||mp[i-1][j+1]=='G')) ans++;}for(int i=1; i<=n; i++)for(int j=1; j<=m; j++) {if(mp[i][j]=='G')if(!(mp[i-1][j-1]=='R'||mp[i-1][j-1]=='G')) ans++;}for(int i=1; i<=n; i++)for(int j=1; j<=m; j++) {if(mp[i][j]=='G')if(!(mp[i-1][j+1]=='B'||mp[i-1][j+1]=='G')) ans++;}    cout<<ans<<endl;}}