이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define all(s) s.begin(),s.end()
using namespace std;
typedef int ll;
ll n,m,a[10009],q,c;
vector<vector<ll> >v;
queue<ll>dq;
ll op(ll x,ll y)
{
if(x<0||y<0||x>=n||y>=m)
return -1;
return x*m+y;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n>>m;
for(ll i=0; i<n*m; i++)
cin>>a[i];
v.resize(n*m);
for(ll i=0; i<n; i++)
for(ll j=0; j<m; j++)
{
ll o=op(i,j),k;
k=op(i-1,j);
if(k>-1)
v[o].push_back(k);
k=op(i+1,j);
if(k>-1)
v[o].push_back(k);
k=op(i,j-1);
if(k>-1)
v[o].push_back(k);
k=op(i,j+1);
if(k>-1)
v[o].push_back(k);
}
cin>>q;
while(q--)
{
ll x,y,z,o;
cin>>x>>y>>z;
o=op(x-1,y-1);
c=a[o],a[o]=z;
dq.push(o);
while(!dq.empty())
{
o=dq.front();
dq.pop();
for(auto u:v[o])
if(a[u]==c)
{
a[u]=z;
dq.push(u);
}
}
}
for(ll i=0; i<n; i++)
{
for(ll j=0; j<m; j++)
cout<<a[op(i,j)]<<" ";
cout<<"\n";
}
return 0;
}
# | 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... |