# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
576973 |
2022-06-13T20:57:13 Z |
timmyfeng |
Paint (COI20_paint) |
C++17 |
|
1804 ms |
133344 KB |
#include <bits/stdc++.h>
using namespace std;
const int D[] = {0, 1, 0, -1};
const int MAGIC = 512;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, m; cin >> n >> m;
vector<int> color(n * m);
for (auto &i : color) cin >> i;
vector<vector<int>> neighbors(n * m);
vector<vector<int>> members(n * m);
vector<int> leader(n * m);
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
int id = i * m + j;
leader[id] = id;
members[id].push_back(id);
for (int dir = 0; dir < 4; ++dir) {
int i_new = i + D[dir], j_new = j + D[(dir + 1) % 4];
if (0 <= i_new && i_new < n && 0 <= j_new && j_new < m) {
neighbors[id].push_back(i_new * m + j_new);
}
}
}
}
vector<map<int, set<int>>> neighbors_by_color(n * m);
vector<bool> in_vector(n * m);
set<int> big_groups;
auto normalize = [&](int a) {
vector<int> neighbors_new;
for (auto b : neighbors[a]) {
b = leader[b];
if (leader[b] != a && !in_vector[b]) {
neighbors_new.push_back(b);
in_vector[b] = true;
}
}
swap(neighbors[a], neighbors_new);
};
auto update = [&](int a) {
if ((int) members[a].size() >= MAGIC) {
for (auto b : big_groups) {
if (a != b && neighbors_by_color[a][color[b]].count(b))
neighbors_by_color[b][color[a]].insert(a);
}
} else {
normalize(a);
for (auto b : big_groups) {
if (in_vector[b])
neighbors_by_color[b][color[a]].insert(a);
}
for (auto b : neighbors[a]) in_vector[b] = false;
}
};
auto merge = [&](int a, int b) {
if (members[a].size() < members[b].size()) swap(a, b);
if ((int) members[a].size() < MAGIC && (int) (members[a].size() + members[b].size()) >= MAGIC) {
for (auto u : neighbors[a])
neighbors_by_color[a][color[leader[u]]].insert(leader[u]);
big_groups.insert(a);
}
if ((int) (members[a].size() + members[b].size()) >= MAGIC) {
for (auto u : neighbors[b])
neighbors_by_color[a][color[leader[u]]].insert(leader[u]);
neighbors_by_color[b].clear();
big_groups.erase(b);
}
for (auto i : members[b]) leader[i] = a;
members[a].insert(members[a].end(), members[b].begin(), members[b].end());
members[b].clear();
neighbors[a].insert(neighbors[a].end(), neighbors[b].begin(), neighbors[b].end());
neighbors[b].clear();
};
auto fill = [&](int a, int c) {
a = leader[a];
while (true) {
if ((int) members[a].size() < MAGIC) {
bool merged = false;
auto initial_neighbors = neighbors[a];
for (auto b : initial_neighbors) {
b = leader[b];
if (b != a && color[b] == c) {
merged = true;
merge(a, b);
a = leader[a];
}
}
if (!merged) break;
} else {
if (neighbors_by_color[a][c].empty()) break;
int b = *neighbors_by_color[a][c].begin();
neighbors_by_color[a][c].erase(b);
b = leader[b];
if (b != a && color[b] == c) {
merge(a, b);
a = leader[a];
}
}
}
color[a] = c;
update(a);
};
for (int i = 0; i < n * m; ++i)
fill(i, color[i]);
int q; cin >> q;
while (q--) {
int i, j, c; cin >> i >> j >> c; --i, --j;
fill(i * m + j, c);
}
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
cout << color[leader[i * m + j]] << " ";
}
cout << "\n";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
468 KB |
Output is correct |
3 |
Correct |
6 ms |
2004 KB |
Output is correct |
4 |
Correct |
8 ms |
1824 KB |
Output is correct |
5 |
Correct |
13 ms |
2944 KB |
Output is correct |
6 |
Correct |
24 ms |
2280 KB |
Output is correct |
7 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
63 ms |
8724 KB |
Output is correct |
2 |
Correct |
114 ms |
18740 KB |
Output is correct |
3 |
Correct |
211 ms |
37804 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
192 ms |
39496 KB |
Output is correct |
2 |
Correct |
190 ms |
37792 KB |
Output is correct |
3 |
Correct |
223 ms |
40828 KB |
Output is correct |
4 |
Correct |
219 ms |
38128 KB |
Output is correct |
5 |
Correct |
196 ms |
36228 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
165 ms |
27508 KB |
Output is correct |
2 |
Correct |
525 ms |
49672 KB |
Output is correct |
3 |
Correct |
1008 ms |
53208 KB |
Output is correct |
4 |
Correct |
1337 ms |
54928 KB |
Output is correct |
5 |
Correct |
481 ms |
45644 KB |
Output is correct |
6 |
Correct |
1804 ms |
133344 KB |
Output is correct |
7 |
Correct |
1301 ms |
105172 KB |
Output is correct |
8 |
Correct |
942 ms |
84276 KB |
Output is correct |
9 |
Correct |
447 ms |
45056 KB |
Output is correct |