This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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; y++){
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;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |