#include "paint.h"
#include <bits/stdc++.h>
using namespace std;
const int N=505;
int dp[N];
int minimumInstructions(int n, int m, int K, vector<int> v, vector<int> A, vector<vector<int>> a) {
for(int i=0;i<n;i++) dp[i]=1e9;
dp[0]=0;
for(int i=0;i<=n-m;i++){
bool flag=0;
for(int ii=0;ii<m;ii++){
flag=0; int j=ii;
for(int cnt=0;cnt<m;cnt++){
if(!binary_search(a[j].begin(),a[j].end(),v[i+cnt])) flag=1;
if(flag) break;
j++; j%=m;
}
if(!flag) break;
}
if(!flag){
for(int j=1;j<min(n,m+1);j++) dp[i+j]=min(dp[i]+1,dp[i+j]);
}
}
if(dp[n-1]>=1e9) return -1;
return dp[n-1];
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |