이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define bug(x) cout << #x << " " << x << endl
vector<vector<int>> mat, marc;
int di[] = {0, 1, 0, -1};
int dj[] = {1, 0, -1, 0};
void dfs( int i, int j, int cor, int id ){
marc[i][j] = id;
for( int d = 0; d < 4; d++ ) if( mat[i][j] == mat[i + di[d]][j + dj[d]] && marc[i][j] != marc[i + di[d]][j + dj[d]] ) dfs( i + di[d], j + dj[d], cor, id );
mat[i][j] = cor;
}
int main(){
int n, m; cin >> n >> m;
mat = marc = vector<vector<int>>( n + 2, vector<int>(m + 2, -1) );
for( int i = 1; i <= n; i++ ) for( int j = 1; j<= m; j++ ) cin >> mat[i][j];
int q; cin >> q;
for( int x = 1; x <= q; x++ ){
int i, j, c; cin >> i >> j >> c;
dfs( i, j, c, x );
}
for( int i = 1; i <= n; i++ ){
for( int j = 1; j<= m; j++ ) cout << mat[i][j] << " ";
cout << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |