-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSquareCutout.cpp
150 lines (129 loc) · 3.41 KB
/
SquareCutout.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// BEGIN CUT HERE
/*
TCO18 Round 3B Easy (250)
問題
-Xanaduと呼ばれる無限の大きさの2次元グリッドがある
-一か所だけ正方形の形で黒く塗りつぶされていて、そのほかの部分は白である
-Xanaduの一部分を切り取った盤面が与えられる
-もしXanaduとしての条件を満たす場合、正方形の最小の大きさを求めよ
*/
// END CUT HERE
#include <algorithm>
#include <string>
#include <vector>
#include <iostream>
#include <sstream>
#include <cstring>
using namespace std;
class SquareCutout {
public:
int verify(vector <string> cutout) {
int H = (int)cutout.size(), W = (int)cutout[0].length();
int sx = 0, sy = 0, ex = 1, ey = 1;
bool done = false;
for (int y = 0; y < H; ++y) {
for (int x = 0; x < W; ++x) {
if (cutout[y][x] == '#') {
if (done) {
return 0;
}
sx = ex = x;
sy = ey = y;
done = true;
while (ey < H && cutout[ey][x] == '#') {
++ey;
}
while (ex < W && cutout[y][ex] == '#') {
++ex;
}
for (int yy = sy; yy < ey; ++yy) {
for (int xx = sx; xx < ex; ++xx) {
if (cutout[yy][xx] != '#') {
return 0;
}
cutout[yy][xx] = '-';
}
}
}
}
}
int width = ex - sx, height = ey - sy;
if ((!sx || ex >= W) && width < height) {
width = height;
}
if ((!sy || ey >= H) && height < width) {
height = width;
}
return width == height ? width : 0;
}
// BEGIN CUT HERE
private:
template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); }
void verify_case(int Case, const int &Expected, const int &Received) { cerr << "Test Case #" << Case << "..."; if (Expected == Received) cerr << "PASSED" << endl; else { cerr << "FAILED" << endl; cerr << "\tExpected: \"" << Expected << '\"' << endl; cerr << "\tReceived: \"" << Received << '\"' << endl; } }
public:
void run_test(int Case) {
int n = 0;
// test_case_0
if ((Case == -1) || (Case == n)){
string Arr0[] = {".....",
"..##.",
"..##.",
".....",
"....."};
int Arg1 = 2;
vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
verify_case(n, Arg1, verify(Arg0));
}
n++;
// test_case_1
if ((Case == -1) || (Case == n)){
string Arr0[] = {"...",
"..."};
int Arg1 = 1;
vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
verify_case(n, Arg1, verify(Arg0));
}
n++;
// test_case_2
if ((Case == -1) || (Case == n)){
string Arr0[] = {".....",
".###.",
".#.#.",
".###.",
"....."};
int Arg1 = 0;
vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
verify_case(n, Arg1, verify(Arg0));
}
n++;
// test_case_3
if ((Case == -1) || (Case == n)){
string Arr0[] = {"..####",
"..####",
"......"};
int Arg1 = 4;
vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
verify_case(n, Arg1, verify(Arg0));
}
n++;
// test_case_4
if ((Case == -1) || (Case == n)){
string Arr0[] = {"..#..",
".###.",
"#####",
".###.",
"..#.."};
int Arg1 = 0;
vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0])));
verify_case(n, Arg1, verify(Arg0));
}
n++;
}
// END CUT HERE
};
// BEGIN CUT HERE
int main() {
SquareCutout ___test;
___test.run_test(-1);
}
// END CUT HERE