#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<vii> vvii;
typedef vector<vi> vvi;
typedef pair<double, double> dodo;
#define pb(x) push_back(x)
#define mp(x, y) make_pair(x, y)
int N, M;
vvi edges;
int num_nodes = 0;
int createNode() {
edges.pb(vi());
return num_nodes++;
}
void connect(int a, int b) {
edges[a].pb(b);
edges[b].pb(a);
}
const int ARRSIZE = 3000*3000;
int parent[ARRSIZE];
bool vis[ARRSIZE] = {0};
/*int dpi[ARRSIZE], dpe[ARRSIZE];
void dfs(int x) {
vis[x] = true;
int no = -1;
for (int i = 0; i < edges[x].size(); i++) {
int y = edges[x][i];
if (y == parent[x]) continue;
if (vis[y]) {
no = i;
continue;
}
parent[y] = x;
dfs(y);
}
dpi[x] = 1;
for (int i = 0; i < edges[x].size(); i++) {
int y = edges[x][i];
if (y == parent[x]) continue;
if (y == no) continue;
dpi[x] += dpe[y];
}
dpe[x] = 0;
for (int i = 0; i < edges[x].size(); i++) {
int y = edges[x][i];
if (y == parent[x]) continue;
if (y == no) continue;
dpe[x] += max(dpi[y], dpe[y]);
}
}*/
int color[ARRSIZE] = {0};
int bfs(int x, bool b) {
int ret = 0;
queue<ii> Q;
Q.push(mp(x, (int)b));
while (!Q.empty()) {
ii a = Q.front(); Q.pop();
if (vis[a.first]) {
if (color[a.first] == 1 && a.second == 0) {
color[a.first] = 0;
ret -= 1;
}
continue;
}
vis[a.first] = true;
color[a.first] = a.second;
ret += a.second;
for (int i = 0; i < edges[a.first].size(); i++) {
int y = edges[a.first][i];
Q.push(mp(y, !a.second));
}
}
return ret;
}
void clean(int x) {
vis[x] = false;
for (int i = 0; i < edges[x].size(); i++) {
int y = edges[x][i];
if (!vis[y]) continue;
clean(y);
}
}
int mat[3000][3000];
vi touch[3000][3000];
void memory_opt() {
cin >> N >> M;
for (int i = 0; i < N; i++) {
string s; cin >> s;
for (int j = 0; j < M; j++) {
if (s[j] == 'R') mat[i][j] = 0;
if (s[j] == 'G') mat[i][j] = 1;
if (s[j] == 'W') mat[i][j] = 2;
}
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < M-2; j++) {
if (mat[i][j]*9 + mat[i][j+1]*3 + mat[i][j+2]*1 == 5) {
int x = createNode();
if (touch[i][j].size() > 0) {
for (int k = 0; k < touch[i][j].size(); k++) connect(x, touch[i][j][k]);
}
touch[i][j].pb(x);
if (touch[i][j+1].size() > 0) {
for (int k = 0; k < touch[i][j+1].size(); k++) connect(x, touch[i][j+1][k]);
}
touch[i][j+1].pb(x);
if (touch[i][j+2].size() > 0) {
for (int k = 0; k < touch[i][j+2].size(); k++) connect(x, touch[i][j+2][k]);
}
touch[i][j+2].pb(x);
}
}
}
for (int i = 0; i < N-2; i++) {
for (int j = 0; j < M; j++) {
if (mat[i][j]*9 + mat[i+1][j]*3 + mat[i+2][j]*1 == 5) {
int x = createNode();
if (touch[i][j].size() > 0) {
for (int k = 0; k < touch[i][j].size(); k++) connect(x, touch[i][j][k]);
}
touch[i][j].pb(x);
if (touch[i+1][j].size() > 0) {
for (int k = 0; k < touch[i+1][j].size(); k++) connect(x, touch[i+1][j][k]);
}
touch[i+1][j].pb(x);
if (touch[i+2][j].size() > 0) {
for (int k = 0; k < touch[i+2][j].size(); k++) connect(x, touch[i+2][j][k]);
}
touch[i+2][j].pb(x);
}
}
}
}
int main(int argc, char **argv) {
ios_base::sync_with_stdio(0);
cin.tie(0);
memory_opt();
//cerr << num_nodes << endl;
int sum = 0;
for (int i = 0; i < num_nodes; i++) {
if (vis[i]) continue;
int a = bfs(i, true);
clean(i);
int b = bfs(i, false);
sum += max(a, b);
//sum += max(dpi[i], dpe[i]);
//cerr << "i am " << i << " i added " << max(dpi[i], dpe[i]) << endl;
}
cout << sum << endl;
return 0;
}
Compilation message
dango_maker.cpp: In function 'int bfs(int, bool)':
dango_maker.cpp:77:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < edges[a.first].size(); i++) {
~~^~~~~~~~~~~~~~~~~~~~~~~
dango_maker.cpp: In function 'void clean(int)':
dango_maker.cpp:86:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < edges[x].size(); i++) {
~~^~~~~~~~~~~~~~~~~
dango_maker.cpp: In function 'void memory_opt()':
dango_maker.cpp:111:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int k = 0; k < touch[i][j].size(); k++) connect(x, touch[i][j][k]);
~~^~~~~~~~~~~~~~~~~~~~
dango_maker.cpp:115:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int k = 0; k < touch[i][j+1].size(); k++) connect(x, touch[i][j+1][k]);
~~^~~~~~~~~~~~~~~~~~~~~~
dango_maker.cpp:119:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int k = 0; k < touch[i][j+2].size(); k++) connect(x, touch[i][j+2][k]);
~~^~~~~~~~~~~~~~~~~~~~~~
dango_maker.cpp:130:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int k = 0; k < touch[i][j].size(); k++) connect(x, touch[i][j][k]);
~~^~~~~~~~~~~~~~~~~~~~
dango_maker.cpp:134:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int k = 0; k < touch[i+1][j].size(); k++) connect(x, touch[i+1][j][k]);
~~^~~~~~~~~~~~~~~~~~~~~~
dango_maker.cpp:138:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int k = 0; k < touch[i+2][j].size(); k++) connect(x, touch[i+2][j][k]);
~~^~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
241 ms |
211736 KB |
Output is correct |
2 |
Correct |
204 ms |
211736 KB |
Output is correct |
3 |
Correct |
209 ms |
211736 KB |
Output is correct |
4 |
Correct |
206 ms |
211736 KB |
Output is correct |
5 |
Correct |
207 ms |
211784 KB |
Output is correct |
6 |
Correct |
200 ms |
211840 KB |
Output is correct |
7 |
Correct |
189 ms |
211972 KB |
Output is correct |
8 |
Correct |
190 ms |
212036 KB |
Output is correct |
9 |
Correct |
198 ms |
212036 KB |
Output is correct |
10 |
Correct |
202 ms |
212036 KB |
Output is correct |
11 |
Correct |
210 ms |
212036 KB |
Output is correct |
12 |
Correct |
196 ms |
212116 KB |
Output is correct |
13 |
Correct |
193 ms |
212116 KB |
Output is correct |
14 |
Correct |
220 ms |
212116 KB |
Output is correct |
15 |
Correct |
218 ms |
212116 KB |
Output is correct |
16 |
Correct |
215 ms |
212116 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
241 ms |
211736 KB |
Output is correct |
2 |
Correct |
204 ms |
211736 KB |
Output is correct |
3 |
Correct |
209 ms |
211736 KB |
Output is correct |
4 |
Correct |
206 ms |
211736 KB |
Output is correct |
5 |
Correct |
207 ms |
211784 KB |
Output is correct |
6 |
Correct |
200 ms |
211840 KB |
Output is correct |
7 |
Correct |
189 ms |
211972 KB |
Output is correct |
8 |
Correct |
190 ms |
212036 KB |
Output is correct |
9 |
Correct |
198 ms |
212036 KB |
Output is correct |
10 |
Correct |
202 ms |
212036 KB |
Output is correct |
11 |
Correct |
210 ms |
212036 KB |
Output is correct |
12 |
Correct |
196 ms |
212116 KB |
Output is correct |
13 |
Correct |
193 ms |
212116 KB |
Output is correct |
14 |
Correct |
220 ms |
212116 KB |
Output is correct |
15 |
Correct |
218 ms |
212116 KB |
Output is correct |
16 |
Correct |
215 ms |
212116 KB |
Output is correct |
17 |
Correct |
214 ms |
212116 KB |
Output is correct |
18 |
Correct |
182 ms |
212116 KB |
Output is correct |
19 |
Correct |
221 ms |
212116 KB |
Output is correct |
20 |
Correct |
189 ms |
212168 KB |
Output is correct |
21 |
Correct |
186 ms |
212168 KB |
Output is correct |
22 |
Correct |
194 ms |
212168 KB |
Output is correct |
23 |
Correct |
184 ms |
212180 KB |
Output is correct |
24 |
Correct |
217 ms |
212180 KB |
Output is correct |
25 |
Correct |
209 ms |
212192 KB |
Output is correct |
26 |
Correct |
217 ms |
212192 KB |
Output is correct |
27 |
Correct |
200 ms |
212256 KB |
Output is correct |
28 |
Correct |
223 ms |
212256 KB |
Output is correct |
29 |
Correct |
216 ms |
212256 KB |
Output is correct |
30 |
Correct |
188 ms |
212256 KB |
Output is correct |
31 |
Correct |
206 ms |
212256 KB |
Output is correct |
32 |
Correct |
228 ms |
212256 KB |
Output is correct |
33 |
Correct |
198 ms |
212364 KB |
Output is correct |
34 |
Incorrect |
187 ms |
212364 KB |
Output isn't correct |
35 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
241 ms |
211736 KB |
Output is correct |
2 |
Correct |
204 ms |
211736 KB |
Output is correct |
3 |
Correct |
209 ms |
211736 KB |
Output is correct |
4 |
Correct |
206 ms |
211736 KB |
Output is correct |
5 |
Correct |
207 ms |
211784 KB |
Output is correct |
6 |
Correct |
200 ms |
211840 KB |
Output is correct |
7 |
Correct |
189 ms |
211972 KB |
Output is correct |
8 |
Correct |
190 ms |
212036 KB |
Output is correct |
9 |
Correct |
198 ms |
212036 KB |
Output is correct |
10 |
Correct |
202 ms |
212036 KB |
Output is correct |
11 |
Correct |
210 ms |
212036 KB |
Output is correct |
12 |
Correct |
196 ms |
212116 KB |
Output is correct |
13 |
Correct |
193 ms |
212116 KB |
Output is correct |
14 |
Correct |
220 ms |
212116 KB |
Output is correct |
15 |
Correct |
218 ms |
212116 KB |
Output is correct |
16 |
Correct |
215 ms |
212116 KB |
Output is correct |
17 |
Correct |
214 ms |
212116 KB |
Output is correct |
18 |
Correct |
182 ms |
212116 KB |
Output is correct |
19 |
Correct |
221 ms |
212116 KB |
Output is correct |
20 |
Correct |
189 ms |
212168 KB |
Output is correct |
21 |
Correct |
186 ms |
212168 KB |
Output is correct |
22 |
Correct |
194 ms |
212168 KB |
Output is correct |
23 |
Correct |
184 ms |
212180 KB |
Output is correct |
24 |
Correct |
217 ms |
212180 KB |
Output is correct |
25 |
Correct |
209 ms |
212192 KB |
Output is correct |
26 |
Correct |
217 ms |
212192 KB |
Output is correct |
27 |
Correct |
200 ms |
212256 KB |
Output is correct |
28 |
Correct |
223 ms |
212256 KB |
Output is correct |
29 |
Correct |
216 ms |
212256 KB |
Output is correct |
30 |
Correct |
188 ms |
212256 KB |
Output is correct |
31 |
Correct |
206 ms |
212256 KB |
Output is correct |
32 |
Correct |
228 ms |
212256 KB |
Output is correct |
33 |
Correct |
198 ms |
212364 KB |
Output is correct |
34 |
Incorrect |
187 ms |
212364 KB |
Output isn't correct |
35 |
Halted |
0 ms |
0 KB |
- |