結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | mamekin |
提出日時 | 2015-12-20 20:25:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 168 ms / 4,000 ms |
コード長 | 1,938 bytes |
コンパイル時間 | 949 ms |
コンパイル使用メモリ | 99,768 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-01 16:56:37 |
合計ジャッジ時間 | 3,085 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 25 ms
5,376 KB |
testcase_09 | AC | 10 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 24 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 12 ms
5,376 KB |
testcase_18 | AC | 29 ms
5,376 KB |
testcase_19 | AC | 27 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 23 ms
5,376 KB |
testcase_22 | AC | 21 ms
5,376 KB |
testcase_23 | AC | 132 ms
5,376 KB |
testcase_24 | AC | 54 ms
5,376 KB |
testcase_25 | AC | 95 ms
5,376 KB |
testcase_26 | AC | 164 ms
5,376 KB |
testcase_27 | AC | 24 ms
5,376 KB |
testcase_28 | AC | 38 ms
5,376 KB |
testcase_29 | AC | 17 ms
5,376 KB |
testcase_30 | AC | 168 ms
5,376 KB |
testcase_31 | AC | 40 ms
5,376 KB |
testcase_32 | AC | 37 ms
5,376 KB |
testcase_33 | AC | 11 ms
5,376 KB |
testcase_34 | AC | 38 ms
5,376 KB |
testcase_35 | AC | 38 ms
5,376 KB |
ソースコード
#include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; const int dy[] = {0, 0, 1, -1}; const int dx[] = {1, -1, 0, 0}; int main() { int h, w; cin >> h >> w; vector<vector<int> > a(h+2, vector<int>(w+2, -1)); vector<int> cnt(2, 0); for(int y=1; y<=h; ++y){ for(int x=1; x<=w; ++x){ cin >> a[y][x]; ++ cnt[a[y][x]]; } } int query; cin >> query; while(--query >= 0){ int y, x, b; cin >> y >> x >> b; if(a[y][x] == b) continue; if(cnt[0] == h * w || cnt[1] == h * w){ if(query == 0){ for(int y=1; y<=h; ++y){ for(int x=1; x<=w; ++x){ a[y][x] = b; } } } continue; } queue<pair<int, int> > q; q.push(make_pair(y, x)); a[y][x] = b; ++ cnt[b]; -- cnt[b^1]; while(!q.empty()){ int y2 = q.front().first; int x2 = q.front().second; q.pop(); for(int i=0; i<4; ++i){ int y3 = y2 + dy[i]; int x3 = x2 + dx[i]; if(a[y3][x3] == (b ^ 1)){ q.push(make_pair(y3, x3)); a[y3][x3] = b; ++ cnt[b]; -- cnt[b^1]; } } } } for(int y=1; y<=h; ++y){ cout << a[y][1]; for(int x=2; x<=w; ++x){ cout << ' ' << a[y][x]; } cout << endl; } return 0; }