結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | uenoku |
提出日時 | 2017-01-14 03:42:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,135 bytes |
コンパイル時間 | 1,128 ms |
コンパイル使用メモリ | 101,052 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 08:10:34 |
合計ジャッジ時間 | 2,585 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 17 ms
5,376 KB |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 18 ms
5,376 KB |
testcase_26 | AC | 17 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 16 ms
5,376 KB |
testcase_29 | AC | 9 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 19 ms
5,376 KB |
ソースコード
#include "math.h" #include <algorithm> #include <bitset> #include <complex> #include <cstdio> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <string> #include <vector> #define ifor(i, a, b) for (int i = (a); i < (b); i++) #define rfor(i, a, b) for (int i = (b)-1; i >= (a); i--) #define rep(i, n) for (int i = 0; i < (n); i++) #define rrep(i, n) for (int i = (n)-1; i >= 0; i--) using namespace std; typedef long double ld; typedef long long int lli; typedef complex<double> P; const double eps = 1e-11; int vx[4] = {1, 0, -1, 0}; int vy[4] = {0, 1, 0, -1}; typedef vector<double> Vec; typedef vector<int> vec; typedef vector<Vec> MAT; typedef vector<vec> mat; lli MOD = 1000000007; int h, w; bool inrange(int x, int y) { return 0 <= x && x < h && y < w && 0 <= y; } int f[205][205]; bool used[300][300]; int temp[300][300]; void paint(int x, int y, int from, int c) { queue<pair<int, int>> que; que.push(make_pair(x, y)); while (!que.empty()) { pair<int, int> cur = que.front(); x = cur.first; y = cur.second; temp[x][y] = c; used[x][y] = true; que.pop(); rep(i, 4) { int nx = vx[i] + x; int ny = vy[i] + y; if (inrange(nx, ny)) { if (f[nx][ny] == from && !used[nx][ny]) { temp[nx][ny] = c; used[nx][ny] = true; que.push(make_pair(nx, ny)); } } } } } inline void dfs(int x, int y, int from, int c) { temp[x][y] = c; used[x][y] = true; rep(i, 4) { int nx = vx[i] + x; int ny = vy[i] + y; if (inrange(nx, ny)) { if (f[nx][ny] == from && !used[nx][ny]) { temp[nx][ny] = c; used[nx][ny] = true; dfs(nx, ny, from, c); } } } }; int main() { ios::sync_with_stdio(false); cin >> h >> w; int a, b, c; rep(i, h) rep(j, w) cin >> f[i][j]; int q; cin >> q; bool mono = false; bool update; int col; rep(m, q) { cin >> a >> b >> c; a--, b--; if (!mono) { int color = temp[0][0]; update = false; rep(i, h) rep(j, w) { if(m!=0)f[i][j] = temp[i][j]; used[i][j] = false; if (color != f[i][j]) update = true; } if (!update) { mono = true; col = c; continue; } paint(a, b, f[a][b], c); } if(mono) col = c; // rep(i, h) rep(j, w) // { // cout << f[i][j]; // if (j == w - 1) // cout << endl; // else // cout << ' '; // } // cout << endl; } if (mono) rep(i, h) rep(j, w) f[i][j] = col; rep(i, h) rep(j, w) { cout << f[i][j]; if (j == w - 1) cout << '\n'; else cout << ' '; } }