#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 |
- |