# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
949316 | ReLice | 벽 칠하기 (APIO20_paint) | C++14 | 1571 ms | 12628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "paint.h"
#include <bits/stdc++.h>
#define ll int
#define str string
#define ins insert
#define ld long double
#define pb push_back
#define pf push_front
#define pof pop_front()
#define pob pop_back()
#define lb lower_bound
#define ub upper_bound
#define endl "\n"
#define fr first
#define sc second
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define sz size()
#define vll vector<ll>
#define bc back()
#define arr array
#define pll vector<pair<ll,ll>>
using namespace std;
template<class S,class T>
bool chmin(S &a,const T &b) {
return a>b?(a=b)==b:false;
}
template<class S,class T>
bool chmax(S &a,const T &b) {
return a<b?(a=b)==b:false;
}
int minimumInstructions(int n, int m, int k, vll c, vll a, vector<vll> b) {
vector<vll> v(k);
ll i,j;
for(i=0;i<m;i++){
for(j=0;j<a[i];j++){
v[b[i][j]].pb(i);
}
}
ll l=0,ans=0;
map<ll,ll> mp;
while(l<n){
if(mp[l] || l<0) return -1;
mp[l]++;
if(l+m-1>=n) {l--;continue;}
vll vv,nv;
for(auto i : v[c[l]])vv.pb(i);
for(i=l+1;i<=l+m-1;i++){
if(vv.sz==0)break;
ll x=0,y=0;
if(vv.bc==m-1 && v[c[i]].sz && v[c[i]][0]==0)nv.pb(0);
if(vv.sz<v[c[i]].sz){
for(j=0;j<vv.sz;j++){
ll low=lb(all(v[c[i]]),vv[j]+1)-v[c[i]].begin();
if(low<v[c[i]].sz && v[c[i]][low]==vv[j]+1)nv.pb(vv[j]+1);
}
}else{
for(j=0;j<v[c[i]].sz;j++){
ll low=lb(all(vv),v[c[i]][j]-1)-vv.begin();
if(low<vv.sz && vv[low]==v[c[i]][j]-1)nv.pb(v[c[i]][j]);
}
}
vv=nv;
nv.clear();
}
if(vv.sz) {ans++;l+=m;}
else l--;
}
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... |