Submission #411874

# Submission time Handle Problem Language Result Execution time Memory
411874 2021-05-26T07:36:47 Z 장태환(#7564) Paint (COI20_paint) C++17
0 / 100
130 ms 10308 KB
#include <vector>
#include <algorithm>
#include <iostream>
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
using namespace std;
int arr[200100];
int nex[200100][4];
int sta[200100];
int siz;
int main()
{
	int N, M,K;
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cin >> N >> M;
	int i,j;
	for (i = 0; i < N; i++)
	{
		for (j = 0; j < M; j++)
		{
			int cu = i * M + j + 1;
			cin >> arr[cu];
			if (i)
				nex[cu][0] = cu - M;
			if (i<N)
				nex[cu][1] = cu + M;
			if(j)
				nex[cu][2] = cu-1;
			if (j<M)
				nex[cu][3] = cu +1;
		}
	}
	cin >> K;
	for (i = 0; i < K; i++)
	{
		int a, b, c;
		cin >> a >> b >> c;
		a--;
		b--;
		if (arr[a * M + b + 1] == c)
			continue;
		sta[0] = a * M + b + 1;
		int curc = arr[a * M + b + 1];
		siz = 0;
		while (siz>=0)
		{
			
			int cu = sta[siz--];
			if (arr[cu] != curc)
				continue;
			arr[cu] = c;
			sta[++siz] = nex[cu][0];
			sta[++siz] = nex[cu][1];
			sta[++siz] = nex[cu][2];
			sta[++siz] = nex[cu][3];
		}
	}
	for (i = 0; i < N; i++)
	{
		for (j = 0; j < M; j++)
		{
			int cu = i * M + j + 1;
			cout << arr[cu]<<' ';
		}
		cout << '\n';
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 38 ms 2380 KB Output is correct
2 Correct 130 ms 3808 KB Output is correct
3 Runtime error 26 ms 10308 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 35 ms 9220 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 85 ms 4564 KB Output isn't correct
2 Halted 0 ms 0 KB -