結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | tkzw_21 |
提出日時 | 2016-03-25 12:18:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 1,649 ms |
コンパイル使用メモリ | 163,080 KB |
実行使用メモリ | 6,656 KB |
最終ジャッジ日時 | 2024-10-02 00:46:57 |
合計ジャッジ時間 | 5,716 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 12 ms
5,248 KB |
testcase_18 | AC | 29 ms
5,632 KB |
testcase_19 | AC | 27 ms
5,888 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | RE | - |
testcase_22 | AC | 22 ms
6,656 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 15 ms
5,248 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | AC | 13 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | AC | 39 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int H,W; vector<vector<int>> A; int dx[] = {0,1,0,-1}; int dy[] = {1,0,-1,0}; void drop(int r,int c,int q){ if(A[r][c] != q)A[r][c] = q; else return; for(int i=0;i<4;i++){ int nr = r + dy[i]; int nc = c + dx[i]; if(nr<0 || nc<0 || nr>=H || nc>=W)continue; if(A[nr][nc] == q)continue; drop(nr, nc, q); } } int main(void){ cin >> H >> W; A = vector<vector<int>>(H,vector<int>(W)); for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ cin >> A[i][j]; } } int Q; cin >> Q; int color = -1; for(int i=0;i<Q;i++){ int r,c,q; cin >> r >> c >> q; r--;c--; if(color == -1)drop(r,c,q); else{ color = q; continue; } bool all = true; for(int j=0;j<H;j++){ for(int k=0;k<W;k++){ if(q != A[i][j])all = false; } } if(all)color = q; } for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ if(color == -1)cout << A[i][j] << " "; else cout << color << " "; }cout << endl; } return 0; }