이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define V vector
int minimumInstructions(int N, int M, int K, V<int> C, V<int> A, V<V<int>> B) {
int ans = 0;
V<int> cand[K], x(M), y(M), dp(N+1);
dp[N] = 1;
for(int i = 0; i < M; i++)
for(int &j : B[i])
cand[j].push_back(i);
for(int i = N; --i >= 0; swap(x, y)) {
if(i+2 < N)
for(int j : cand[C[i+2]]) x[j] = 0;
for(int j : cand[C[i]])
if((x[j] = 1 + y[(j + 1) % M]) >= M) dp[i] = 1;
}
for(int i = 0, j; i < N; i=j, ans++) {
j = min(N, i + M);
while(j > i && !dp[j]) --j;
if(i == j) return -1;
}
return ans;
}
# | 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... |