結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | paruki |
提出日時 | 2016-07-08 15:15:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,646 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 167,204 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-10-12 23:27:30 |
合計ジャッジ時間 | 8,124 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 769 ms
5,248 KB |
testcase_08 | TLE | - |
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 "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; const int DY[] = {-1,0,1,0}; const int DX[] = {0,1,0,-1}; int H, W, A[200][200], vis[200][200]; void dfs(int y, int x, int col, int &cnt, bool flag){ if(A[y][x] != col){ if(vis[y][x]++)return; if(flag){ A[y][x] = col; } else{ ++cnt; } rep(i, 4){ int ny = y + DY[i], nx = x + DX[i]; if(ny >= 0 && ny < H&&nx >= 0 && nx < W)dfs(ny, nx, col, cnt, flag); } } } int main(){ while(cin >> H >> W){ rep(y, H)rep(x, W)scanf("%d", &A[y][x]); int cnt = 0, lastCol = 0; int Q; cin >> Q; while(Q--){ int Y, X, C; scanf("%d%d%d", &Y, &X, &C); --Y; --X; lastCol = C; if(cnt == H*W || A[Y][X]==C)continue; MEM(vis, 0); dfs(Y, X, C, cnt, 1); MEM(vis, 0); dfs(Y, X, 1 - C, cnt, 0); } if(cnt == H*W)rep(y, H)rep(x, W)A[y][x] = lastCol; rep(y, H){ rep(x, W){ printf("%d%c", A[y][x], x == W - 1 ? '\n' : ' '); } } } }