結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | minato |
提出日時 | 2020-08-25 23:17:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 450 ms / 4,000 ms |
コード長 | 3,815 bytes |
コンパイル時間 | 4,921 ms |
コンパイル使用メモリ | 249,228 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 11:52:42 |
合計ジャッジ時間 | 6,785 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 6 ms
5,248 KB |
testcase_08 | AC | 31 ms
5,248 KB |
testcase_09 | AC | 13 ms
5,248 KB |
testcase_10 | AC | 4 ms
5,248 KB |
testcase_11 | AC | 7 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 11 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 4 ms
5,248 KB |
testcase_17 | AC | 25 ms
5,248 KB |
testcase_18 | AC | 75 ms
5,248 KB |
testcase_19 | AC | 64 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 47 ms
5,248 KB |
testcase_22 | AC | 41 ms
5,248 KB |
testcase_23 | AC | 407 ms
5,248 KB |
testcase_24 | AC | 150 ms
5,248 KB |
testcase_25 | AC | 212 ms
5,248 KB |
testcase_26 | AC | 443 ms
5,248 KB |
testcase_27 | AC | 12 ms
5,248 KB |
testcase_28 | AC | 28 ms
5,248 KB |
testcase_29 | AC | 8 ms
5,248 KB |
testcase_30 | AC | 450 ms
5,248 KB |
testcase_31 | AC | 18 ms
5,248 KB |
testcase_32 | AC | 17 ms
5,248 KB |
testcase_33 | AC | 9 ms
5,248 KB |
testcase_34 | AC | 18 ms
5,248 KB |
testcase_35 | AC | 19 ms
5,248 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; using ll = long long; using ull = unsigned long long; using pii = pair<int, int>; using pll = pair<long long, long long>; #define rep(i, n) for(int i = 0; i < (n); ++i) #define all(x) (x).begin(),(x).end() constexpr char ln = '\n'; //constexpr long long MOD = 1000000007; constexpr long long MOD = 998244353; template<class T1, class T2> inline bool chmax(T1 &a, T2 b) { if (a < b) { a = b; return true;} return false; } template<class T1, class T2> inline bool chmin(T1 &a, T2 b) { if (a > b) { a = b; return true;} return false; } inline int popcount(int x) {return __builtin_popcount(x);} inline int popcount(long long x) {return __builtin_popcountll(x);} void print() { cout << "\n"; } template<class T, class... Args> void print(const T &x, const Args &... args) { cout << x << " "; print(args...); } /////////////////////////////////////////////////////////////////////////////////////////////////////////////// struct UnionFind { int N; vector<int> node; UnionFind(){} UnionFind(int N) : N(N), node(N,-1) {} void init(int x) { node.assign(x,-1); N = x; } bool merge(int x, int y) { x = root(x); y = root(y); if (x == y) return false; if (node[x] > node[y]) swap(x,y); node[x] += node[y]; node[y] = x; N--; return true; } bool same(int x, int y) {return root(x) == root(y);} int root(int x) { if (node[x] < 0) return x; return node[x] = root(node[x]); } int size(int x) {return -node[root(x)];} int count() const {return N;} }; const int dx[4] = {-1,0,1,0}; const int dy[4] = {0,-1,0,1}; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int H,W; cin >> H >> W; vector<vector<int>> A(H, vector<int>(W)); rep(i,H) rep(j,W) cin >> A[i][j]; UnionFind uf(H*W); rep(x,H) rep(y,W) { rep(k,4) { int nx = x + dx[k]; int ny = y + dy[k]; if (nx < 0 or nx >= H or ny < 0 or ny >= W) continue; if (A[x][y]==A[nx][ny]) uf.merge(x*W+y,nx*W+ny); } } int Q; cin >> Q; int all = -1; queue<pii> que; vector<pii> B; while (Q--) { int h,w,c; cin >> h >> w >> c; if (~all) { all = c; continue; } --h; --w; if (A[h][w] == c) continue; if (uf.size(h*W+w)==H*W) { all = c; continue; } A[h][w] = c; que.emplace(h,w); B.emplace_back(h,w); while (!que.empty()) { auto[x,y] = que.front(); que.pop(); rep(k,4) { int nx = x + dx[k]; int ny = y + dy[k]; if (nx < 0 or nx >= H or ny < 0 or ny >= W) continue; if (A[nx][ny]==c) continue; if (uf.same(x*W+y,nx*W+ny)) { A[nx][ny] = c; que.emplace(nx,ny); B.emplace_back(nx,ny); } } } while (!B.empty()) { auto[x,y] = B.back(); B.pop_back(); rep(k,4) { int nx = x + dx[k]; int ny = y + dy[k]; if (nx < 0 or nx >= H or ny < 0 or ny >= W) continue; if (A[x][y]==A[nx][ny]) { uf.merge(x*W+y,nx*W+ny); } } } } if (~all) { rep(i,H) { rep(j,W) cout << all << " "; cout << ln; } } else { rep(i,H) { rep(j,W) cout << A[i][j] << " "; cout << ln; } } }