#include #include #include #include #include #include #include #include #include #include using namespace std; #define rep(i,n) for(int i=0;i<((int)(n));i++) #define reg(i,a,b) for(int i=((int)(a));i<=((int)(b));i++) #define irep(i,n) for(int i=((int)(n))-1;i>=0;i--) #define ireg(i,a,b) for(int i=((int)(b));i>=((int)(a));i--) typedef long long int lli; typedef pair mp; #define fir first #define sec second #define IINF INT_MAX #define LINF LLONG_MAX int h,w; int dat[205][205]; int gone[205][205]; int dd[5]={1,0,-1,0,1}; vector vs[205][205]; mp uni[205][205]; void init(){ rep(y,205){ rep(x,205){ uni[y][x]=mp(y,x); } } } mp find(mp p){ mp& np=uni[p.fir][p.sec]; if(np==p)return p; return (np=find(np)); } void mer(mp pa,mp pb){ mp pp=find(pb); uni[pp.fir][pp.sec]=find(pa); } bool same(mp pa,mp pb){ return find(pa)==find(pb); } int main(void){ init(); scanf("%d%d",&h,&w); reg(y,1,h){ reg(x,1,w){ scanf("%d",&dat[y][x]); } } reg(y,1,h){ reg(x,1,w-1){ if(dat[y][x]==dat[y][x+1])mer(mp(y,x),mp(y,x+1)); } } reg(y,1,h-1){ reg(x,1,w){ if(dat[y][x]==dat[y+1][x])mer(mp(y+1,x),mp(y,x)); } } reg(y,1,h){ reg(x,1,w-1){ if(dat[y][x]!=dat[y][x+1]){ mp pa=find(mp(y,x)); mp pb=find(mp(y,x+1)); //printf("(%d %d) (%d %d)\n",pa.fir,pa.sec,pb.fir,pb.sec); vs[pa.fir][pa.sec].push_back(pb); vs[pb.fir][pb.sec].push_back(pa); } } } //printf("yo\n"); reg(y,1,h-1){ reg(x,1,w){ if(dat[y][x]!=dat[y+1][x]){ mp pa=find(mp(y,x)); mp pb=find(mp(y+1,x)); //printf("(%d %d) (%d %d)\n",pa.fir,pa.sec,pb.fir,pb.sec); vs[pa.fir][pa.sec].push_back(pb); vs[pb.fir][pb.sec].push_back(pa); } } } int qqq; scanf("%d",&qqq); rep(i,qqq){ int y,x,c; scanf("%d%d%d",&y,&x,&c); memset(gone,0,sizeof(gone)); mp np=find(mp(y,x)); y=np.fir; x=np.sec; //printf("np .. %d %d\n",np.fir,np.sec); if(dat[np.fir][np.sec]==c)continue; dat[np.fir][np.sec]=c; vector tvs; for(mp pa :vs[y][x]){ //printf("rin .. %d %d\n",pa.fir,pa.sec); if(!same(np,pa)){ mer(np,pa); /* reg(y,1,h){ reg(x,1,w){ mp pp=find(mp(y,x)); printf("%d%c",dat[pp.fir][pp.sec],x==w?'\n':' '); } }*/ for(mp pb :vs[pa.fir][pa.sec]){ if(!same(np,pb))tvs.push_back(pb); } } } swap(vs[y][x],tvs); /* reg(y,1,h){ reg(x,1,w){ mp pp=find(mp(y,x)); printf("%d%c",dat[pp.fir][pp.sec],x==w?'\n':' '); } }*/ } reg(y,1,h){ reg(x,1,w){ mp pp=find(mp(y,x)); printf("%d%c",dat[pp.fir][pp.sec],x==w?'\n':' '); } } return 0; } /* 4 4 1 0 1 1 0 1 1 0 1 0 0 1 0 1 1 0 3 2 3 0 2 3 1 2 3 0 */