結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | iqueue02 |
提出日時 | 2020-01-15 23:10:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,181 bytes |
コンパイル時間 | 1,681 ms |
コンパイル使用メモリ | 177,264 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 22:14:33 |
合計ジャッジ時間 | 3,901 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
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 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 24 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 41 ms
6,940 KB |
testcase_32 | AC | 40 ms
6,944 KB |
testcase_33 | WA | - |
testcase_34 | AC | 40 ms
6,944 KB |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; int dx[] = {1,0,-1,0}; int dy[] = {0,1,0,-1}; int main(){ int h, w; cin >> h >> w; vector<vector<int>> a(h, vector<int>(w)); rep(i,h) rep(j,w) cin >> a[i][j]; int q, cnt0 = 0, cnt1 = 0; cin >> q; int allc = -1; while (q--) { int r, c, x; cin >> r >> c >> x; r--; c--; if (cnt0 == h*w || cnt1 == h*w) { allc = x; continue; } if (a[r][c] == x) continue; queue<P> que; que.push(make_pair(r, c)); a[r][c] = x; while (!que.empty()) { auto p = que.front(); que.pop(); if (a[p.first][p.second] == x) continue; a[p.first][p.second] = x; if (x == 0) cnt0++; else cnt1++; for (int i = 0; i < 4; i++) { int nx = p.first + dx[i], ny = p.second + dy[i]; if (nx < 0 || ny < 0 || nx >= h || ny >= w) continue; if (a[nx][ny] == x) continue; que.push(make_pair(nx,ny)); } } } rep(i,h) { rep(j,w) cout << (allc != -1 ? allc : a[i][j]) << " "; cout << endl; } return 0; }