Submission #996327

# Submission time Handle Problem Language Result Execution time Memory
996327 2024-06-10T12:59:58 Z Dan4Life Painting Walls (APIO20_paint) C++17
0 / 100
1 ms 344 KB
#include "paint.h"
#include <bits/stdc++.h>
using namespace std;

int n, m, k;
int minimumInstructions(int N, int M, int K, vector<int> C, vector<int> A, vector<vector<int>> B) {
	n = N, m = M, k = K;
	int tot = 0;
	for(int y = 0; y <= N-M; ){
		int x = -1; tot++;
		for(int i = 0; i < M; i++){
			for(auto col : B[i])
				if(col==C[y]) x=i;
		}
		if(x==-1) return -1;
		for(int i = 0; i < M; i++){
			bool found = false;
			for(auto col : B[x])
				if(col==C[y]) found = true;
			if(!found) return -1;
			
			x++; if(x==M) x=0;
			y++; if(y==N) break;
		}
		if(y==N) break;
	}
	return tot+1;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -