#include "advisor.h"
#include <bits/stdc++.h>
using namespace std;
int FT[100005];
void add(int idx, int amt){
idx++;
while(idx < 100005){
FT[idx] += amt;
idx += idx & -idx;
}
}
int sum(int idx){
idx++;
int ret = 0;
while(idx > 0){
ret += FT[idx];
idx -= idx & -idx;
}
return ret;
}
int nxt[100005];
set<int> s[100005];
int infcnt;
void ComputeAdvice(int *C, int N, int K, int M) {
const int INF = 1e9;
// Compute everything in the morning.
// Remember only ordering of the removals.
for(int i = 0; i < N; i++){
s[C[i]].insert(i);
}
for(int i = 0; i < N; i++){
set<int>::iterator it = s[C[i]].upper_bound(i);
if(it == s[C[i]].end()){
nxt[i] = INF + infcnt++;
}else{
nxt[i] = *it;
}
}
map<int, int> use;
map<int, int> f;
vector<int> raw;
for(int i = 0; i < K; i++){
if(s[i].empty()){
use[i] = INF + infcnt++;
f[INF + infcnt-1] = i;
}else{
set<int>::iterator it = s[i].begin();
use[i] = *it;
f[*it] = i;
}
add(i,1);
}
for(int i = 0; i < N; i++){
if(f.find(i) != f.end()){
int x = f[i];
set<int>::iterator it = s[x].upper_bound(i);
f.erase(i);
if(it == s[x].end()){
use[x] = INF + infcnt++;
f[INF + infcnt - 1] = x;
}
else{
use[x] = *it;
f[*it] = x;
}
}
if(use.find(C[i]) != use.end()){
}else{
pair<int,int> cur = *f.rbegin();
f.erase(cur.first);
raw.push_back(sum(cur.second));
use.erase(cur.second);
add(cur.second, -1);
use[C[i]] = nxt[i];
f[nxt[i]] = C[i];
add(C[i], 1);
}
}
for(int i = 0; i < raw.size(); i++){
for(int j = 0; j < 15; j++){
if(raw[i] & (1 << j)){
WriteAdvice(1);
}else{
WriteAdvice(0);
}
}
}
}
#include "assistant.h"
#include <bits/stdc++.h>
using namespace std;
int FTS[100005];
void addS(int idx, int amt){
idx++;
while(idx < 100005){
FTS[idx] += amt;
idx += idx & -idx;
}
}
int sumS(int idx){
idx++;
int ret = 0;
while(idx > 0){
ret += FTS[idx];
idx -= idx & -idx;
}
return ret;
}
int getidx(int num){
int lo = 0;
int hi = 100003;
int mid;
while(lo < hi){
mid = (lo + hi)/2;
if(sumS(mid) < num){
lo = mid+1;
}else{
hi = mid;
}
}
return lo;
}
void Assist(unsigned char *A, int N, int K, int R) {
vector<int> dat;
for(int i = 0; i < R; i += 15){
int cur = 0;
for(int j = 0; j < 15; j++){
if(A[i+j]){
cur += 1 << j;
}
}
dat.push_back(cur);
}
set<int> use;
for(int i = 0; i < K; i++){
use.insert(i);
addS(i,1);
}
int idx = 0;
for(int i = 0; i < N; i++){
int cur = GetRequest();
if(use.find(cur) != use.end()) continue;
int now = dat[idx++];
int eidx = getidx(now);
PutBack(eidx);
use.erase(eidx);
addS(eidx, -1);
use.insert(cur);
addS(cur, 1);
}
}
Compilation message
advisor.cpp: In function 'void ComputeAdvice(int*, int, int, int)':
advisor.cpp:80:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < raw.size(); i++){
~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
9984 KB |
Output is correct |
2 |
Correct |
7 ms |
9984 KB |
Output is correct |
3 |
Correct |
8 ms |
10496 KB |
Output is correct |
4 |
Correct |
15 ms |
10752 KB |
Output is correct |
5 |
Incorrect |
11 ms |
11008 KB |
Error - advice is too long |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
12288 KB |
Output is correct |
2 |
Correct |
149 ms |
19656 KB |
Output is correct |
3 |
Incorrect |
454 ms |
35608 KB |
Error - Putting back a color that is not on the scaffold |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
308 ms |
27840 KB |
Output is correct |
2 |
Correct |
430 ms |
32696 KB |
Output is correct |
3 |
Correct |
409 ms |
33040 KB |
Output is correct |
4 |
Correct |
381 ms |
32656 KB |
Output is correct |
5 |
Correct |
320 ms |
30208 KB |
Output is correct |
6 |
Correct |
535 ms |
32984 KB |
Output is correct |
7 |
Correct |
415 ms |
32640 KB |
Output is correct |
8 |
Correct |
471 ms |
35280 KB |
Output is correct |
9 |
Correct |
274 ms |
30760 KB |
Output is correct |
10 |
Correct |
392 ms |
32880 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
11 ms |
10752 KB |
Error - advice is too long |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
389 ms |
31584 KB |
Output is partially correct - 772365 bits used |
2 |
Partially correct |
387 ms |
31584 KB |
Output is partially correct - 742095 bits used |
3 |
Partially correct |
393 ms |
32104 KB |
Output is partially correct - 712470 bits used |
4 |
Partially correct |
396 ms |
32024 KB |
Output is partially correct - 712005 bits used |
5 |
Partially correct |
394 ms |
31968 KB |
Output is partially correct - 710610 bits used |
6 |
Partially correct |
401 ms |
32184 KB |
Output is partially correct - 712155 bits used |
7 |
Partially correct |
400 ms |
32040 KB |
Output is partially correct - 711090 bits used |
8 |
Partially correct |
410 ms |
32088 KB |
Output is partially correct - 713340 bits used |
9 |
Partially correct |
411 ms |
32080 KB |
Output is partially correct - 712830 bits used |
10 |
Partially correct |
479 ms |
34392 KB |
Output is partially correct - 1117620 bits used |