# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
341913 | Hazem | Paint (COI20_paint) | C++14 | 3070 ms | 3308 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*
ID: tmhazem1
LANG: C++14
TASK: pprime
*/
#include <bits/stdc++.h>
using namespace std;
#define S second
#define F first
#define LL long long
const int N = 2e5 + 10;
LL LINF = 100000000000000000;
LL INF = 1000000000;
int MOD = 1e9+7;
vector<vector<int>>vec;
vector<vector<int>>component;
int colors[N];
int n,m;
int x[] = {1,-1,0,0};
int y[] = {0,0,1,-1};
bool in(int i,int j){
return i>=0&&j>=0&&i<n&&j<m;
}
void dfs(int i,int j,int cnt){
if(component[i][j]!=-1)return;
component[i][j] = cnt;
for(int k=0;k<4;k++){
int i1 = i+x[k],j1 = j+y[k];
if(in(i1,j1)&&vec[i][j]==vec[i1][j1])
dfs(i1,j1,cnt);
}
}
void calc_comp(){
vector<int>vec1(m,-1);
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
component[i][j] = -1;
int cnt = 1;
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(component[i][j]!=-1)continue;
else colors[cnt] = vec[i][j],dfs(i,j,cnt++);
}
int main()
{
// freopen("out.txt","w",stdout);
scanf("%d%d",&n,&m);
vector<int>vec0;
vector<int>vec1(m,-1);
for(int i=1;i<=n;i++){
for(int j=0;j<m;j++){
int x;cin>>x;
vec0.push_back(x);
}
vec.push_back(vec0);
vec0.clear();
component.push_back(vec1);
}
calc_comp();
int q;
scanf("%d",&q);
while(q--){
int i,j,c;
scanf("%d%d%d",&i,&j,&c);
i--,j--;
for(int i1=0;i1<n;i1++)
for(int j1=0;j1<m;j1++)
if(component[i1][j1]==component[i][j])vec[i1][j1] = c;
calc_comp();
}
for(int i=0;i<n;i++){
for(int j=0;j<m;j++)
printf("%d ",colors[component[i][j]]);
puts("");
}
}
Compilation message (stderr)
# | 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... |