Submission #1172741


Source Code Expand

#include <algorithm>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <string>
#include <vector>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> VI;
typedef pair<int, int> ipair;
typedef tuple<int, int, int> ituple;

const int INF = (int)2e9;
// const int MOD = (int)1e9 + 7;
// const double EPS = 1e-10;

#define MAX_N 500 + 2

void exec(){
  int n;
  string a[MAX_N];
  int allBlackRow = -1;
  bool isAllWhite = true;

  cin >> n;

  for (int i = 0; i < n; i++){
    bool isAllBlack = true;
    cin >> a[i];
    for (int j = 0; j < n; j++){
      if (a[i][j] != '#'){
        isAllBlack = false;
      }
      if (a[i][j] == '#'){
        isAllWhite = false;
      }
    }
    if (isAllBlack){
      allBlackRow = i;
    }
  }

  if (isAllWhite){
    cout << -1 << endl;
    return;
  }

  int result = 0;
  // 真っ黒な行を探す
  if (allBlackRow == -1){
    // 列に黒があるか?
    bool existsBlackInColumn[n];

    for (int i = 0; i < n; i++){
      existsBlackInColumn[i] = false;
      for (int j = 0; j < n; j++){
        if (a[j][i] == '#'){
          existsBlackInColumn[i] = true;
          break;
        }
      }
    }

    int minimumChangeRaw = INF;
    for (int i = 0; i < n; i++){
      int changeColumns = 0;
      int whiteNum = 0;
      for (int j = 0; j < n; j++){
        if (a[i][j] == '.'){
          whiteNum++;
        }
      }
      if (existsBlackInColumn[i]){
        changeColumns += whiteNum;
      }
      else{
        changeColumns += whiteNum + 1;
      }
      minimumChangeRaw = min(minimumChangeRaw, changeColumns);
    }

    result += minimumChangeRaw;
  }

  // 白がある列を探す
  for (int i = 0; i < n; i++){
    for (int j = 0; j < n; j++){
      if (a[j][i] == '.'){
        result++;
        break;
      }
    }
  }

  cout << result << endl;

}

void solve(){
  int t = 1;
  // scanf("%d", &t);
  for (int i = 0; i < t; i++){
    exec();
  }
}

int main(){
  solve();
  return 0;
}

Submission Info

Submission Time
Task B - Row to Column
User mkiken
Language C++14 (GCC 5.4.1)
Score 1300
Code Size 2145 Byte
Status AC
Exec Time 11 ms
Memory 512 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 300 / 300 1000 / 1000
Status
AC × 5
AC × 20
AC × 43
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt
Subtask 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 2_00.txt, 2_01.txt, 2_02.txt, 2_03.txt, 2_04.txt, 2_05.txt, 2_06.txt, 2_07.txt, 2_08.txt, 2_09.txt, 2_10.txt, 2_11.txt, 2_12.txt, 2_13.txt, 2_14.txt, 2_15.txt, 2_16.txt, 2_17.txt, 2_18.txt, 2_19.txt, 2_20.txt, 2_21.txt, 2_22.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
0_04.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt AC 1 ms 256 KB
1_05.txt AC 1 ms 256 KB
1_06.txt AC 1 ms 256 KB
1_07.txt AC 1 ms 256 KB
1_08.txt AC 1 ms 256 KB
1_09.txt AC 1 ms 256 KB
1_10.txt AC 1 ms 256 KB
1_11.txt AC 1 ms 256 KB
1_12.txt AC 1 ms 256 KB
1_13.txt AC 1 ms 256 KB
1_14.txt AC 1 ms 256 KB
2_00.txt AC 10 ms 512 KB
2_01.txt AC 10 ms 512 KB
2_02.txt AC 11 ms 512 KB
2_03.txt AC 10 ms 512 KB
2_04.txt AC 11 ms 512 KB
2_05.txt AC 10 ms 512 KB
2_06.txt AC 10 ms 512 KB
2_07.txt AC 8 ms 512 KB
2_08.txt AC 11 ms 512 KB
2_09.txt AC 10 ms 512 KB
2_10.txt AC 10 ms 512 KB
2_11.txt AC 11 ms 512 KB
2_12.txt AC 11 ms 512 KB
2_13.txt AC 10 ms 512 KB
2_14.txt AC 10 ms 512 KB
2_15.txt AC 9 ms 512 KB
2_16.txt AC 9 ms 512 KB
2_17.txt AC 8 ms 512 KB
2_18.txt AC 7 ms 512 KB
2_19.txt AC 10 ms 512 KB
2_20.txt AC 7 ms 512 KB
2_21.txt AC 7 ms 512 KB
2_22.txt AC 10 ms 512 KB