#include <bits/stdc++.h>
#include "advisor.h"
#define forn(i, a, b) for(int i = int(a); i <= int(b); ++ i)
using namespace std;
void ComputeAdvice(int *C, int N, int K, int M) {
int bits = log2(N);
forn(i, 0, N - 1){
forn(j, 0, bits){
((C[i] & (1 << j))) ? WriteAdvice(1) : WriteAdvice(0);
}
}
}
#include <bits/stdc++.h>
#include "assistant.h"
#define forn(i, a, b) for(int i = int(a); i <= int(b); ++ i)
using namespace std;
const int lim = 1e5;
bool cubeta[lim + 2];
int apu[lim + 2];
struct ura{
int numero, sigaparicion;
const bool operator < (const ura & a) const {
if(sigaparicion == a.sigaparicion){
return numero < a.numero;
}
return sigaparicion < a.sigaparicion;
}
};
priority_queue<ura> pq;
priority_queue<ura> pqinv;
vector<int> pos[lim + 2];
void Assist(unsigned char *A, int N, int K, int R) {
forn(i, 0, K - 1){
cubeta[i] = 1;
}
forn(i, K, N - 1){
cubeta[i] = 0;
}
forn(i, 0, N - 1){
apu[i]= 0;
}
int bits = log2(N);
int numero;
forn(i, 0, N - 1){
numero = 0;
forn(j, 0, bits){
if(A[(i * (bits + 1)) + j] == 1){
numero |= (1 << j);
}
}
pos[numero].push_back(i);
}
forn(i, 0, N - 1){
pos[i].push_back(N);
}
forn(i, 0, K - 1){
pq.push({i, pos[i][apu[i]]});
pqinv.push({i, -1 * pos[i][apu[i]]});
}
int sig;
ura aux;
forn(i, 0, N - 1){
sig = GetRequest();
if(cubeta[sig]){
continue;
}
cubeta[sig] = 1;
while(!pqinv.empty()){
aux = pqinv.top();
if(cubeta[aux.numero]){
if(-1 * aux.sigaparicion < i){
if(pos[aux.numero][apu[aux.numero]] <= i){
apu[aux.numero] ++;
pq.push({i, pos[aux.numero][apu[aux.numero]]});
pqinv.push({i, -1 * pos[aux.numero][apu[aux.numero]]});
}
}
}
if(-1 * aux.sigaparicion >= i){
break;
}
pqinv.pop();
}
while(!pq.empty()){
aux = pq.top();
if(!cubeta[aux.numero]){
pq.pop();
}
else{
break;
}
}
///cout << aux.sigaparicion << "\n";
PutBack(aux.numero);
while(pos[aux.numero][apu[aux.numero]] <= i){
apu[aux.numero] ++;
}
cubeta[aux.numero] = 0;
pq.pop();
pq.push({sig, pos[sig][apu[sig]]});
pqinv.push({sig, -1 * pos[sig][apu[sig]]});
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2944 KB |
Output is correct |
2 |
Incorrect |
1 ms |
2948 KB |
Output isn't correct - not an optimal way |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
35 ms |
4496 KB |
Error - Putting back a color that is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
337 ms |
16768 KB |
Error - Putting back a color that is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
2948 KB |
Error - advice is too long |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
419 ms |
19728 KB |
Error - Putting back a color that is not on the scaffold |
2 |
Incorrect |
390 ms |
19696 KB |
Error - Putting back a color that is not on the scaffold |
3 |
Incorrect |
429 ms |
19800 KB |
Output isn't correct - not an optimal way |
4 |
Incorrect |
393 ms |
19816 KB |
Output isn't correct - not an optimal way |
5 |
Incorrect |
422 ms |
19976 KB |
Output isn't correct - not an optimal way |
6 |
Incorrect |
426 ms |
19908 KB |
Output isn't correct - not an optimal way |
7 |
Incorrect |
397 ms |
20132 KB |
Output isn't correct - not an optimal way |
8 |
Incorrect |
432 ms |
19916 KB |
Output isn't correct - not an optimal way |
9 |
Incorrect |
394 ms |
19856 KB |
Output isn't correct - not an optimal way |
10 |
Incorrect |
440 ms |
20412 KB |
Output isn't correct - not an optimal way |