# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
401944 | faresbasbs | 벽 칠하기 (APIO20_paint) | C++14 | 1563 ms | 13220 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "paint.h"
using namespace std;
int v1[100001],v2[100001],q1[100001],q2[100001],cnt1,cnt2;
vector<int> vals[100001];
int minimumInstructions(int n , int m , int K , vector<int> c , vector<int> A , vector<vector<int>> B){
for(int i = 0 ; i < m ; i += 1){
v1[i] = v2[i] = -1000000000;
for(auto j : B[i]){
vals[j].push_back(i);
}
}
for(int i : vals[c[n-1]]){
q1[cnt1++] = i;
v1[i] = n-1;
}
vector<int> all;
bool ok = 0;
for(auto j : q1){
if(v1[j]-(n-1) >= m-1){
ok = 1;
}
}
if(ok){
all.push_back(n-1);
}
for(int i = n-2 ; i >= 0 ; i -= 1){
cnt2 = 0;
for(auto j : vals[c[i]]){
if(vals[c[i+1]].size() && vals[c[i+1]].back() >= (j+1)%m &&
*lower_bound(vals[c[i+1]].begin(),vals[c[i+1]].end(),(j+1)%m) == (j+1)%m){
q2[cnt2++] = j;
v2[j] = v1[(j+1)%m];
}else{
q2[cnt2++] = j;
v2[j] = i;
}
}
for(int j = 0 ; j < cnt1 ; j += 1){
v1[q1[j]] = -1000000000;
}
for(int j = 0 ; j < cnt2 ; j += 1){
v1[q2[j]] = v2[q2[j]];
v2[q2[j]] = -1000000000;
q1[j] = q2[j];
}
swap(cnt1,cnt2);
cnt2 = 0;
bool ok = 0;
for(int j = 0 ; j < cnt1 ; j += 1){
if(v1[q1[j]]-i >= m-1){
ok = 1;
}
}
if(ok){
all.push_back(i);
}
}
reverse(all.begin(),all.end());
if(all.size() == 0 || all[0] != 0){
return -1;
}
int pre = 0 , mx = 0 , cnt = 1;
for(int i = 0 ; i < all.size() ; i += 1){
if(pre+m >= all[i]){
mx = all[i];
continue;
}
if(mx == pre){
return -1;
}
cnt += 1 , pre = mx;
i -= 1;
}
if(pre+m == n){
return cnt;
}
pre = mx , cnt += 1;
if(pre+m == n){
return cnt;
}
return -1;
}
컴파일 시 표준 에러 (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... |