#include "advisor.h"
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
//#define int long long
#define fi first
#define se second
#define pb push_back
//#define mp make_pair
typedef pair<int, int> ii;
typedef pair<ii, int> iii;
typedef pair<ii, ii> iiii;
const int N = 3e5 + 5;
const int oo = 1e9 + 7, mod = 1e9 + 7;
/*
mt19937 rng(1);
int rnd(int l, int r){
int temp = rng() % (r - l + 1);
return abs(temp) + l;
}*/
//set<ii> se;
map<int, int> mp;
int nxt[N];
int c[N];
bool cook[N];
int in[N];
int n, k;
void ComputeAdvice(int *C, int N, int K, int M){
n = N, k = K;
for(int i = 0; i < k; i++) c[i] = i;
for(int i = k; i < n + k; i++) c[i] = C[i - k];
for(int i = n + k - 1; i >= 0; i--){
if(mp.find(c[i]) == mp.end()) nxt[i] = oo;
else nxt[i] = mp[c[i]];
mp[c[i]] = i;
}
set<ii> se;
for(int i = 0; i < n; i++) in[i] = -1;
for(int i = 0; i < n + k; i++){
if(in[c[i]] >= 0){
se.erase({in[c[i]], c[i]});
in[c[i]] = nxt[i];
se.insert({in[c[i]], c[i]});
}
else{
if(se.size() == k){
int temp = (*se.rbegin()).se;
cook[temp] = 1;
in[temp] = -1;
se.erase((*se.rbegin()));
}
in[c[i]] = nxt[i];
se.insert({in[c[i]], c[i]});
}
}
for(int i = 0; i < n + k; i++) WriteAdvice(cook[i]);
}
#include "assistant.h"
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
//#define int long long
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<int, int> ii;
typedef pair<ii, int> iii;
typedef pair<ii, ii> iiii;
const int N = 3e5 + 5;
const int oo = 1e18 + 7, mod = 1e9 + 7;
mt19937 rng(1);
int rnd(int l, int r){
int temp = rng() % (r - l + 1);
return abs(temp) + l;
}
void Assist(unsigned char *A, int N, int K, int R){
int n = N, k = K;
set<int> cooking;
set<int> ins;
//cout << n + k << "\n";
//for(int i = 0; i < n; i++) in[i] = -1;
for(int i = 0; i < n + k; i++){
int x;
if(i < k) x = i;
else x = GetRequest();
//cout << "HE " << x << "\n";
if(ins.find(x) != ins.end()){
cooking.erase(x);
if(A[i]) cooking.insert(x);
}
else{
// cout << x << "\n";
// cout << "HOHOHO\n";
if(ins.size() == k){
// assert(cooking.size());
int temp = (*cooking.begin());
cooking.erase(temp);
ins.erase(temp);
PutBack(temp);
}
// cout << "HOHOHO2\n";
if(A[i]) cooking.insert(x);
ins.insert(x);
// cout << "HO\n";
}
}
}
Compilation message
advisor.cpp: In function 'void ComputeAdvice(int*, int, int, int)':
advisor.cpp:60:17: warning: comparison of integer expressions of different signedness: 'std::set<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
60 | if(se.size() == k){
| ^
assistant.cpp:19:21: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+18' to '2147483647' [-Woverflow]
19 | const int oo = 1e18 + 7, mod = 1e9 + 7;
| ~~~~~^~~
assistant.cpp: In function 'void Assist(unsigned char*, int, int, int)':
assistant.cpp:47:18: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
47 | if(ins.size() == k){
| ~~~~~~~~~~~^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
516 KB |
Output is correct |
2 |
Incorrect |
1 ms |
512 KB |
Error - Putting back a color that is not on the scaffold |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
12 ms |
1628 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 |
117 ms |
9012 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 |
5 ms |
1068 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 |
139 ms |
10564 KB |
Error - Putting back a color that is not on the scaffold |
2 |
Incorrect |
136 ms |
10756 KB |
Error - Putting back a color that is not on the scaffold |
3 |
Incorrect |
134 ms |
11052 KB |
Error - Putting back a color that is not on the scaffold |
4 |
Incorrect |
149 ms |
11044 KB |
Error - Putting back a color that is not on the scaffold |
5 |
Incorrect |
146 ms |
11156 KB |
Error - Putting back a color that is not on the scaffold |
6 |
Incorrect |
135 ms |
11004 KB |
Error - Putting back a color that is not on the scaffold |
7 |
Incorrect |
145 ms |
11004 KB |
Error - Putting back a color that is not on the scaffold |
8 |
Incorrect |
156 ms |
11012 KB |
Error - Putting back a color that is not on the scaffold |
9 |
Incorrect |
142 ms |
11216 KB |
Error - Putting back a color that is not on the scaffold |
10 |
Incorrect |
165 ms |
12604 KB |
Error - Putting back a color that is not on the scaffold |