• 2015 多校联赛 ——HDU5319(模拟)


    Painter

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 895    Accepted Submission(s): 408

    Problem Description
    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
    2 4 RR.B .RG. .BRR B..R 4 RRBB RGGB BGGR BBRR
     
    Sample Output
    3 6
     
    Author
    ZSTU
     
    Source


    按照45度刷墙,红色的从左上 ->右下,蓝色从右上->左下,一种颜色对一个点只能刷一次,红 + 蓝 ->绿

    模拟即过。

    (论英语的重要性!!   看半天才懂什么意思)

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <stdlib.h>
    using namespace std;
    
    char Map[60][60];
    
    int main()
    {
        int n,T;
    //    freopen("4.txt","r",stdin);
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d",&n);
            for(int i = 0; i < n; i++)
                scanf("%s",Map[i]);
            int i,j;
            int tot= 0;
            int len = strlen(Map[0]);
            for(i = 0; i < n; i++)
                for(j = 0; j < len; j++)
                {
                    if(Map[i][j] == 'R' ||  Map[i][j] == 'r')
                    {
                        tot++;
                        Map[i][j] = '.';
                        for(int k = 1; k + i < n && j + k < len; k++)
                        {
                            if(Map[i+k][j+k] == 'R' || Map[i+k][j+k] == 'r')
                                Map[i+k][j+k] = '.';
    
                            else if(Map[i+k][j+k] == 'G')
                                Map[i+k][j+k] = 'b';
    
                            else
                                break;
                        }
                    }
                    if(Map[i][j] == 'B' ||  Map[i][j] == 'b')
                    {
                        tot++;
                        Map[i][j] = '.';
                        for(int k = 1; k + i < n && j - k >= 0; k++)
                        {
                            if(Map[i+k][j-k] == 'B' || Map[i+k][j-k] == 'b')
                                Map[i+k][j-k] = '.';
    
                            else if(Map[i+k][j-k] == 'G')
                                Map[i+k][j-k] = 'r';
    
                            else
                                break;
                        }
                    }
                    if(Map[i][j] == 'G')
                    {
                        tot+=2;
                        Map[i][j] = '.';
                        for(int k = 1; k + i < n && j - k >= 0; k++)
                        {
                            if(Map[i+k][j-k] == 'G')
                                Map[i+k][j-k] = 'r';
                            else if(Map[i+k][j-k] == 'B' || Map[i+k][j-k] == 'b')
                                Map[i+k][j-k] = '.';
                            else
                                break;
                        }
                        for(int k = 1; k + i < n && j + k < len ; k++)
                        {
                            if(Map[i+k][j+k] == 'G')
                                Map[i+k][j+k] = 'b';
                            else if(Map[i+k][j+k] == 'R' || Map[i+k][j+k] == 'r')
                                Map[i+k][j+k] = '.';
                            else
                                break;
                        }
                    }
                }
            printf("%d
    ",tot);
        }
        return 0;
    }
    

      

  • 相关阅读:
    ibatis命名空间namespace的使用
    MyEclipse 下新建Flex与JAVA交互项目
    第2章 TCP/IP 和Internet
    第一部分:TCP/IP 基础 第一章 开放式通信模型简介
    01-布局扩展-利用盒模型完成圣杯布局(双飞翼布局)
    01-布局扩展-用calc来计算实现双飞翼布局
    01-布局扩展-BFC完成圣杯布局
    Nginx
    uni-app mpvue wepy websocket的介绍
    taro 使用taro中的vue来完成小程序的开发
  • 原文地址:https://www.cnblogs.com/Przz/p/5409818.html
Copyright © 2020-2023  润新知