Submission #1626630


Source Code Expand

#include <algorithm>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;


// The author implemented this solution after he read the editorial.
int main(void) {
  int n;
  cin >> n;
  vector<string> s(n);
  REP(i, 0, n) {
    cin >> s[i];
  }
  int c = 0;
  REP(i, 0, n) {
    bool all_black = true;
    REP(j, 0, n) {
      if (s[j][i] == '.') {
	all_black = false;
	break;
      }
    }
    c += all_black ? 0 : 1;
  }
  int mi = 1e8;
  REP(i, 0, n) {
    bool all_white = true;
    REP(j, 0, n) {
      if (s[j][i] == '#') {
	all_white = false;
	break;
      }
    }
    int x = 0;
    REP(j, 0, n) {
      x += s[i][j] == '.' ? 1 : 0;
    }
    if (all_white) {
      x += 1;
    }
    mi = min(mi, x);
  }
  cout << mi + c << endl;
}

Submission Info

Submission Time
Task B - Row to Column
User kobae964
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1205 Byte
Status WA
Exec Time 13 ms
Memory 512 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 0 / 300 0 / 1000
Status
AC × 4
WA × 1
AC × 17
WA × 3
AC × 39
WA × 4
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 WA 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 WA 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 WA 1 ms 256 KB
1_13.txt AC 1 ms 256 KB
1_14.txt AC 1 ms 256 KB
2_00.txt WA 10 ms 512 KB
2_01.txt AC 10 ms 512 KB
2_02.txt AC 10 ms 512 KB
2_03.txt AC 10 ms 512 KB
2_04.txt AC 10 ms 512 KB
2_05.txt AC 10 ms 512 KB
2_06.txt AC 13 ms 512 KB
2_07.txt AC 7 ms 512 KB
2_08.txt AC 10 ms 512 KB
2_09.txt AC 10 ms 512 KB
2_10.txt AC 10 ms 512 KB
2_11.txt AC 10 ms 512 KB
2_12.txt AC 10 ms 512 KB
2_13.txt AC 9 ms 512 KB
2_14.txt AC 9 ms 512 KB
2_15.txt AC 8 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 9 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