zoukankan      html  css  js  c++  java
  • 2013暑假集训B组训练赛第二场

    C - Purification
    Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

    Description

    You are an adventurer currently journeying inside an evil temple. After defeating a couple of weak zombies, you arrived at a square room consisting of tiles forming an n × n grid. The rows are numbered 1 through n from top to bottom, and the columns are numbered 1 through n from left to right. At the far side of the room lies a door locked with evil magical forces. The following inscriptions are written on the door:

    The cleaning of all evil will awaken the door!

    Being a very senior adventurer, you immediately realize what this means. You notice that every single cell in the grid are initially evil. You should purify all of these cells.

    The only method of tile purification known to you is by casting the "Purification" spell. You cast this spell on a single tile — then, all cells that are located in the same row and all cells that are located in the same column as the selected tile become purified (including the selected tile)! It is allowed to purify a cell more than once.

    You would like to purify all n × n cells while minimizing the number of times you cast the "Purification" spell. This sounds very easy, but you just noticed that some tiles are particularly more evil than the other tiles. You cannot cast the "Purification" spell on those particularly more evil tiles, not even after they have been purified. They can still be purified if a cell sharing the same row or the same column gets selected by the "Purification" spell.

    Please find some way to purify all the cells with the minimum number of spells cast. Print -1 if there is no such way.

    Input

    The first line will contain a single integer n (1 ≤ n ≤ 100). Then, n lines follows, each contains n characters. The j-th character in the i-th row represents the cell located at row i and column j. It will be the character 'E' if it is a particularly more evil cell, and '.' otherwise.

    Output

    If there exists no way to purify all the cells, output -1. Otherwise, if your solution casts x "Purification" spells (where x is the minimum possible number of spells), output x lines. Each line should consist of two integers denoting the row and column numbers of the cell on which you should cast the "Purification" spell.

    Sample Input

    Input
    3
    .E.
    E.E
    .E.
    Output
    1 1
    2 2
    3 3
    Input
    3
    EEE
    E..
    E.E
    Output
    -1
    Input
    5
    EE.EE
    E.EE.
    E...E
    .EE.E
    EE.EE
    Output
    3 3
    1 3
    2 2
    4 4
    5 3

    先开一个二维数组存数据,再判断有没有十字型的,分两种情况
    EEEEE
    E....
    E.E..
    E..E.

    EEEE.
    E....
    E.E..
    E.E..
    E....
    然后一个个的输出就好
    #include <cstdio>
    
    int col[200];
    int row[200];
    
    char s[105][105];
    int r,c;
    int main()
    {
        int n;
        while(~scanf("%d",&n))
        {
            r=c=0;
            getchar();
            for(int i=1; i <= n; i++)
                scanf("%s",s[i]+1);
            for(int i=1; i<=n; i++)
                for(int j = 1; j<=n; j++)
                {
                    if(s[i][j]=='E')
                    {
                        row[i]++,col[j]++;
                        if(row[i]==n) r=1;
                        if(col[j]==n) c=1;
                        if(r&&c)
                        {
                            puts("-1");
                            return 0;
                        }
                    }
                }
            if(r)
                for(int j=1; j<=n; j++)
                {
                    for(int i = 1; i<=n; i++)
                    {
                        if(s[i][j]=='.')
                        {
                            printf("%d %d
    ",i,j);
                            break;
                        }
                    }
                }
            else
            {
                for(int i = 1; i <= n; i++)
                    for(int j = 1; j <= n; j++)
                        if(s[i][j]=='.')
                        {
                            printf("%d %d
    ",i,j);
                            break;
                        }
            }
        }
        return 0;
    }
  • 相关阅读:
    103、服务器出现大量close_wait的连接的原因是什么?有什么解决方法?
    102、常见的HTTP状态码有哪些?
    rpm包管理、yum源及创建本地仓库(同步华为源)
    文件管理之:输出与重定向echo
    高级权限--acl, mask,文件属性权限;su切换用户,sudo提权
    基本权限;权限对⽂件or⽬录的意义;特殊权限;文件权限之umask
    权限管理--用户介绍;用户与组相关文件;用户管理命令之用户创建、查看、删除、修改
    文件管理之:打包、压缩
    字符处理命令-sort排序,uniq去重,cut剪切文件,tr删除或替换结果集,wc统计
    上传与下载wget、curl、r z、s z
  • 原文地址:https://www.cnblogs.com/wejex/p/3219755.html
Copyright © 2011-2022 走看看