結果
問題 |
No.307 最近色塗る問題多くない?
|
ユーザー |
![]() |
提出日時 | 2015-11-28 00:29:05 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,814 bytes |
コンパイル時間 | 1,726 ms |
コンパイル使用メモリ | 167,332 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-14 00:42:24 |
合計ジャッジ時間 | 7,202 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 TLE * 1 -- * 32 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include "bits/stdc++.h" #define rep(i,n) for(int i = 0;i < n;i++) #define P(p) cout<<(p)<<endl; using namespace std; typedef long long ll; int dx[] = { 0, 1, 0, -1 }; int dy[] = { -1, 0, 1, 0 }; int sttoi(std::string str) { int ret; std::stringstream ss; ss << str; ss >> ret; return ret; } ll gcd(ll a, ll b){ if (b > a)swap(a, b); if (b == 0)return a; else{ return gcd(b, a%b); } } void solve() { int n, m; cin >> n >> m; int board[201][201]; for (int i = 1; i <= n; i++){ for (int j = 1; j <= m; j++){ cin >> board[i][j]; } } int q; cin >> q; bool flag1 = true; bool flag2 = true; bool end = false; int last; int x[50000], y[50000], c[50000]; rep(i, q){ cin >> y[i] >> x[i] >> c[i]; } rep(i, q){ stack<pair<int, int>> st; st.push(make_pair(x[i], y[i])); int f = board[y[i]][x[i]]; int colo = board[1][1]; flag1 = true; for (int i = 1; i <= n; i++){ for (int j = 1; j <= m; j++){ if (board[i][j] != colo){ flag1 = false; } } } if (flag1){ end = true; break; } while (!st.empty()){ pair<int, int> pos = st.top(); st.pop(); board[pos.second][pos.first] = c[i]; for (int j = 0; j < 4; j++){ int newX = pos.first + dx[j]; int newY = pos.second + dy[j]; if (newX >= 1 && newX <= m && newY >= 1 && newY <= n){ if (board[newY][newX] == f){ st.push(make_pair(newX, newY)); board[newY][newX] = c[i]; } } } } } if (end){ for (int i = 1; i <= n; i++){ for (int j = 1; j <= m; j++){ cout << c[q-1]; if (j != m)cout << " "; } cout << endl; } } else{ for (int i = 1; i <= n; i++){ for (int j = 1; j <= m; j++){ cout << board[i][j]; if (j != m)cout << " "; } cout << endl; } } } int main() { solve(); return 0; }