# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
402954 | proma | 벽 칠하기 (APIO20_paint) | C++17 | 1 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int minimumInstructions (int N, int M, int K, vector <int> C, vector<int> A, vector <vector<int>> B) {
vector <int> contractor[K];
for (int i = 0; i < M; i ++) {
for (int j = 0; j < A[i]; j ++) {
contractor[B[i][j]].push_back(i);
}
}
int dp[2][M], mx[N];
memset(dp, 0, sizeof(dp));
memset(mx, 0, sizeof(mx));
for (auto i: contractor[C[0]]) {
dp[0][i] = 1;
}
for (int i = 1; i < N; i ++) {
for (auto j: contractor[C[i]]) {
dp[i & 1][j] = min(dp[!(i & 1)][(j - 1 + M) % M] + 1, M);
mx[i] = max(mx[i], dp[i & 1][j]);
}
for (auto j: contractor[C[i-1]]) {
dp[!(i & 1)][j] = 0;
}
}
int last, cnt = 0, flag = 1, ans = 0;
for (int i = N - 1; i >= 0; i --, cnt --) {
if (mx[i] == M) {
last = i;
flag = 0;
}
if (!cnt) {
if (flag) {
return -1;
}
flag = 1;
cnt = M - last + i;
ans ++;
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |