Submission #1132452
Source Code Expand
#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <string>
#include <algorithm>
#define mp make_pair
#define pb push_back
using namespace std;
typedef pair<int, int> pii;
const int MAXN = 1000;
string a[MAXN];
int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++)
cin >> a[i];
{
bool flag = false;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
if (a[i][j] != '.') {
flag = true;
break;
}
if (!flag) {
cout << -1;
return 0;
}
}
int id = -1;
int minw = 1e9;
for (int i = 0; i < n; i++) {
int white = 0;
bool flag = false;
for (int j = 0; j < n; j++)
if (a[i][j] == '.')
white++;
for (int j = 0; j < n; j++)
if (a[j][i] == '#') {
flag = true;
break;
}
if (!flag)
white++;
minw = min(white, minw);
id = i;
}
for (int i = 0; i < n; i++) {
bool flag = false;
for (int j = 0; j < n; j++)
if (a[j][i] == '.') {
flag = true;
break;
}
if (!flag)
minw--;
}
if (id == -1)
cout << -1;
else
cout << minw + n;
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - Row to Column |
| User | Saimon_Saret |
| Language | C++14 (GCC 5.4.1) |
| Score | 1300 |
| Code Size | 1518 Byte |
| Status | AC |
| Exec Time | 10 ms |
| Memory | 512 KiB |
Judge Result
| Set Name | Sample | Subtask | All | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 300 / 300 | 1000 / 1000 | ||||||
| Status |
|
|
|
| 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 KiB |
| 0_01.txt | AC | 1 ms | 256 KiB |
| 0_02.txt | AC | 1 ms | 256 KiB |
| 0_03.txt | AC | 1 ms | 256 KiB |
| 0_04.txt | AC | 1 ms | 256 KiB |
| 1_00.txt | AC | 1 ms | 256 KiB |
| 1_01.txt | AC | 1 ms | 256 KiB |
| 1_02.txt | AC | 1 ms | 256 KiB |
| 1_03.txt | AC | 1 ms | 256 KiB |
| 1_04.txt | AC | 1 ms | 256 KiB |
| 1_05.txt | AC | 1 ms | 256 KiB |
| 1_06.txt | AC | 1 ms | 256 KiB |
| 1_07.txt | AC | 1 ms | 256 KiB |
| 1_08.txt | AC | 1 ms | 256 KiB |
| 1_09.txt | AC | 1 ms | 256 KiB |
| 1_10.txt | AC | 1 ms | 256 KiB |
| 1_11.txt | AC | 1 ms | 256 KiB |
| 1_12.txt | AC | 1 ms | 256 KiB |
| 1_13.txt | AC | 1 ms | 256 KiB |
| 1_14.txt | AC | 1 ms | 256 KiB |
| 2_00.txt | AC | 10 ms | 512 KiB |
| 2_01.txt | AC | 10 ms | 512 KiB |
| 2_02.txt | AC | 10 ms | 512 KiB |
| 2_03.txt | AC | 10 ms | 512 KiB |
| 2_04.txt | AC | 10 ms | 512 KiB |
| 2_05.txt | AC | 10 ms | 512 KiB |
| 2_06.txt | AC | 10 ms | 512 KiB |
| 2_07.txt | AC | 7 ms | 512 KiB |
| 2_08.txt | AC | 10 ms | 512 KiB |
| 2_09.txt | AC | 10 ms | 512 KiB |
| 2_10.txt | AC | 10 ms | 512 KiB |
| 2_11.txt | AC | 10 ms | 512 KiB |
| 2_12.txt | AC | 9 ms | 512 KiB |
| 2_13.txt | AC | 8 ms | 512 KiB |
| 2_14.txt | AC | 9 ms | 512 KiB |
| 2_15.txt | AC | 8 ms | 512 KiB |
| 2_16.txt | AC | 9 ms | 512 KiB |
| 2_17.txt | AC | 8 ms | 512 KiB |
| 2_18.txt | AC | 7 ms | 512 KiB |
| 2_19.txt | AC | 9 ms | 512 KiB |
| 2_20.txt | AC | 7 ms | 512 KiB |
| 2_21.txt | AC | 6 ms | 512 KiB |
| 2_22.txt | AC | 10 ms | 512 KiB |