#include<bits/stdc++.h>
#include "advisor.h"
using namespace std;
int andamio[100001];
queue<int> rep[100001];
pair<int,int> st[400010];
void st_i(int j,int i=0,int pos=1){
if(i==j){
int aux=andamio[i];
if(rep[aux].size()>0) aux=rep[aux].front();
else aux=100000;
st[pos]={aux,aux};
return;
}
st_i((i+j)/2,i,pos*2);
st_i(j,(i+j)/2+1,pos*2+1);
st[pos].first=max(st[pos*2].first,st[pos*2+1].second);
st[pos].second=min(st[pos*2].second,st[pos*2+1].second);
}
void st_ap(int j,int act,int i=0,int pos=1){
if(i==j){
int aux=andamio[i];
if(rep[aux].size()>0) aux=rep[aux].front();
else aux=100000;
st[pos]={aux,aux};
return;
}
if(st[pos*2].second==act) st_ap((i+j)/2,act,i,pos*2);
else st_ap(j,act,(i+j)/2+1,pos*2+1);
st[pos].first=max(st[pos*2].first,st[pos*2+1].second);
st[pos].second=min(st[pos*2].second,st[pos*2+1].second);
}
void st_ag(int j,int act,int i=0,int pos=1){
if(i==j){
int aux=andamio[i];
if(rep[aux].size()>0) aux=rep[aux].front();
else aux=100000;
st[pos]={aux,aux};
return;
}
if(st[pos*2].first==act) st_ag((i+j)/2,act,i,pos*2);
else st_ag(j,act,(i+j)/2+1,pos*2+1);
st[pos].first=max(st[pos*2].first,st[pos*2+1].second);
st[pos].second=min(st[pos*2].second,st[pos*2+1].second);
}
int return_min(int j,int i=0,int pos=1){
if(i==j) return i;
else if(st[pos].second==st[pos*2].second) return return_min((i+j)/2,i,pos*2);
else return return_min(j,(i+j)/2+1,pos*2+1);
}
int return_max(int j,int i=0,int pos=1){
if(i==j) return i;
else if(st[pos].first==st[pos*2].first) return return_min((i+j)/2,i,pos*2);
else return return_min(j,(i+j)/2+1,pos*2+1);
}
void ComputeAdvice(int *C, int N, int K, int M) {
int lim=log2(K-1);
int expo[lim+2];
expo[0]=1;
for(int i=1;i<=lim;i++){
expo[i]=expo[i-1]*2;
}
if(expo[lim]*2-1<K-1) {
lim++;
expo[lim]=expo[lim-1]*2;
}
for(int i=0;i<N;i++){
if(i<K) andamio[i]=i;
rep[C[i]].push(i);
}
st_i(K-1);
for(int i=0;i<N;i++){
if(st[1].second==i){
rep[return_min(K-1)].pop();
st_ap(K-1,i);
}
else{
int pos=return_max(K-1);
int val=pos;
for(int j=lim;j>=0;j--){
if(expo[j]<=val){
WriteAdvice(1);
val-=expo[j];
}
else WriteAdvice(0);
}
rep[C[i]].pop(),
andamio[pos]=C[i];
st_ag(K-1,st[i].first);
}
}
}
#include<bits/stdc++.h>
#include "assistant.h"
using namespace std;
bool cont[100001];
int an[100001];
void Assist(unsigned char *A, int N, int K, int R) {
int lim=log2(K-1);
int expo[lim+2];
expo[0]=1;
for(int i=1;i<=lim;i++){
expo[i]=expo[i-1]*2;
}
if(expo[lim]*2-1<K-1) {
lim++;
expo[lim]=expo[lim-1]*2;
}
for(int i=0;i<K;i++){
cont[i]=1;
an[i]=i;
}
int pos=0;
for(int i=0;i<N;i++){
int req=GetRequest();
if(cont[req]==false){
int val=0;
for(int j=lim;j>=0;j--){
if(A[pos]==1) val+=expo[j];
pos++;
}
cont[val]=false;
PutBack(an[val]);
an[val]=req;
cont[req]=true;
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
42 ms |
67840 KB |
Output is correct |
2 |
Incorrect |
45 ms |
68028 KB |
Error - Not putting back color when it is not on the scaffold |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
67 ms |
68988 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
321 ms |
77400 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
56 ms |
68076 KB |
Error - advice is too long |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
414 ms |
79584 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Incorrect |
376 ms |
79500 KB |
Error - Not putting back color when it is not on the scaffold |
3 |
Incorrect |
364 ms |
79732 KB |
Error - Not putting back color when it is not on the scaffold |
4 |
Incorrect |
348 ms |
79612 KB |
Error - Not putting back color when it is not on the scaffold |
5 |
Incorrect |
360 ms |
79648 KB |
Error - Not putting back color when it is not on the scaffold |
6 |
Incorrect |
390 ms |
79544 KB |
Error - Not putting back color when it is not on the scaffold |
7 |
Incorrect |
359 ms |
79660 KB |
Error - Not putting back color when it is not on the scaffold |
8 |
Incorrect |
358 ms |
79532 KB |
Error - Not putting back color when it is not on the scaffold |
9 |
Incorrect |
338 ms |
79536 KB |
Error - Not putting back color when it is not on the scaffold |
10 |
Runtime error |
317 ms |
79368 KB |
Execution killed with signal 11 |