zoukankan      html  css  js  c++  java
  • 7.28多校1004——模拟——Painter

    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
     
    Source
     
    Recommend
    wange2014   |   We have carefully selected several similar problems for you:  5326 5325 5324 5323 5322 
    /*
    大意:R只能右下涂,B只能右上涂,G表示被两种颜色都涂了,问你至少涂多少次把它涂成这样,暴力枚举每种斜线从一个边界到另一个边界
    做了半天最后被场外队友A了。
    有好多要学习的地方
    !!!看题仔细!!!
    1.能简单开for循环的不要开while
    2.ok判断能省很多代码量
    3.想清楚dfs用来干什么~~不要乱开变得繁琐
    4注意重复点不要多次进行DFS
    */
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    
    char map[55][55];
    int f_left, f_right;
    int cnt, n ,m;
    
    bool ok(int x, int y)
    {
        if(x < 0 || x >= n || y < 0 || y >= m)
            return false;
        return true;
    }
    
    void left(int x, int y)
    {
        if(ok(x, y)){
            if(map[x][y] == 'R' || map[x][y] == 'G'){
                if(f_left == 0){
                    cnt++;
                    f_left = 1;
                }
            }
            else f_left = 0;
        left(x + 1, y + 1);
        }
        return;
    }
    
    void right(int x, int y)
    {
        if(ok(x, y)){
            if(map[x][y] == 'B' || map[x][y] == 'G'){
                if(f_right == 0){
                    cnt++;
                    f_right = 1;
                }
            }
            else f_right = 0;
            right(x + 1, y - 1);
        }
        return ;
    }
    
    int main()
    {
        int T;
        scanf("%d", &T);
        while(T--){
            memset(map, 0, sizeof(map));
            cnt = 0;
            scanf("%d", &n);
            for(int i = 0 ; i < n; i++){
                scanf("%s", map[i]);
                m = strlen(map[i]);
            }
            for(int i = 0; i < n ; i++){
                f_left = 0;
                left(i, 0);
            }
            for(int i = 1; i < m ; i++){
                f_left = 0;
                left(0, i);
            }
            for(int i = 0; i < n; i++){
                f_right = 0;
                right(i,m-1);
            }
            for(int i = 0; i < m - 1 ; i++){
                f_right = 0;
                right(0, i);
            }
            printf("%d
    ", cnt);
        }
        return 0;
    }
    

      

  • 相关阅读:
    HDU 3277 Marriage Match III(最大流+二分+并查集)
    HDU 3032 Nim or not Nim?(博弈,打表找规律)
    2013南京邀请赛小结——ACM两年总结
    HDU 2829 Lawrence (斜率DP)
    HDU 3530 Subsequence(单调队列)
    HDU 1525 Euclid's Game(博弈)
    C Count The Carries(2013南京邀请赛C题)
    A Play the Dice (2013南京邀请赛A题)
    POJ 3017 Cut the Sequence(单调队列+set)
    Jquery TreeView
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4684249.html
Copyright © 2011-2022 走看看