結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | koba-e964 |
提出日時 | 2015-12-04 14:40:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,909 bytes |
コンパイル時間 | 1,119 ms |
コンパイル使用メモリ | 94,784 KB |
実行使用メモリ | 817,592 KB |
最終ジャッジ日時 | 2024-09-14 12:56:58 |
合計ジャッジ時間 | 6,867 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef pair<int, int> PI; const double EPS=1e-9; VI a[201]; int h,w; int get_col(int x, int y) { if (x < 0 || x >= h || y < 0 || y >= h) { return -1; } return a[x][y]; } int main(void){ cin >> h >> w; REP(i, 0, h) { a[i].reserve(w); REP(j, 0, w) { int b; cin >> b; a[i].push_back(b); } } int q; int saturated = 0; int sat_col = -1; cin >> q; REP(loop, 0, q) { int r,c,x; cin >> r >> c >> x; r--,c--; if (saturated) { sat_col = x; continue; } int col = a[r][c]; if (x == col) { continue; } int dir[5] = {0,1,0,-1,0}; queue<PI> que; que.push(PI(r, c)); while (!que.empty()) { PI t = que.front(); que.pop(); int x = t.first, y = t.second; REP(d, 0, 4) { int dx = dir[d], dy = dir[d + 1]; if (get_col(x + dx, y + dy) == col) { que.push(PI(x + dx, y + dy)); } } a[x][y] = 1 - col; } } REP(i, 0, h) { REP(j, 0, w) { if (saturated) { a[i][j] = sat_col; } cout << a[i][j] << (j == w - 1 ? "\n" : " "); } } }