#include "advisor.h"
#include <bits/stdc++.h>
#include <bits/extc++.h>
#define StarBurstStream ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define iter(a) a.begin(), a.end()
#define riter(a) a.rbegin(), a.rend()
#define lsort(a) sort(iter(a))
#define gsort(a) sort(riter(a))
#define pb(a) push_back(a)
#define eb(a) emplace_back(a)
#define pf(a) push_front(a)
#define ef(a) emplace_front(a)
#define pob pop_back()
#define pof pop_front()
#define mp(a, b) make_pair(a, b)
#define F first
#define S second
#define mt make_tuple
#define gt(t, i) get<i>(t)
#define tomax(a, b) ((a) = max((a), (b)))
#define tomin(a, b) ((a) = min((a), (b)))
#define topos(a) ((a) = (((a) % MOD + MOD) % MOD))
#define uni(a) a.resize(unique(iter(a)) - a.begin())
#define printv(a, b) {bool pvaspace=false; \
for(auto pva : a){ \
if(pvaspace) b << " "; pvaspace=true;\
b << pva;\
}\
b << "\n";}
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pdd = pair<ld, ld>;
using tiii = tuple<int, int, int>;
const ll MOD = 1000000007;
const ll MAX = 2147483647;
template<typename A, typename B>
ostream& operator<<(ostream& o, pair<A, B> p){
return o << '(' << p.F << ',' << p.S << ')';
}
void ComputeAdvice(int *C, int n, int k, int M){
vector<int> ans(k + n);
vector<int> lst(n, -1);
vector<queue<int>> pos(n);
for(int i = 0; i < n; i++){
pos[C[i]].push(k + i);
}
for(int i = 0; i < n; i++) pos[i].push(k + n);
set<pii> st;
for(int i = 0; i < k; i++){
lst[i] = i;
st.insert(mp(pos[i].front(), i));
}
for(int i = 0; i < n; i++){
int c = C[i];
if(lst[c] != -1){
st.erase(mp(pos[c].front(), c));
pos[c].pop();
st.insert(mp(pos[c].front(), c));
continue;
}
int r = st.rbegin()->S;
st.erase(prev(st.end()));
ans[lst[r]] = 1;
lst[r] = -1;
lst[c] = k + i;
st.erase(mp(pos[c].front(), c));
pos[c].pop();
st.insert(mp(pos[c].front(), c));
}
printv(ans, cerr);
for(int i : ans) WriteAdvice(i);
}
#include "assistant.h"
#include <bits/stdc++.h>
#include <bits/extc++.h>
#define StarBurstStream ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define iter(a) a.begin(), a.end()
#define riter(a) a.rbegin(), a.rend()
#define lsort(a) sort(iter(a))
#define gsort(a) sort(riter(a))
#define pb(a) push_back(a)
#define eb(a) emplace_back(a)
#define pf(a) push_front(a)
#define ef(a) emplace_front(a)
#define pob pop_back()
#define pof pop_front()
#define mp(a, b) make_pair(a, b)
#define F first
#define S second
#define mt make_tuple
#define gt(t, i) get<i>(t)
#define tomax(a, b) ((a) = max((a), (b)))
#define tomin(a, b) ((a) = min((a), (b)))
#define topos(a) ((a) = (((a) % MOD + MOD) % MOD))
#define uni(a) a.resize(unique(iter(a)) - a.begin())
#define printv(a, b) {bool pvaspace=false; \
for(auto pva : a){ \
if(pvaspace) b << " "; pvaspace=true;\
b << pva;\
}\
b << "\n";}
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pdd = pair<ld, ld>;
using tiii = tuple<int, int, int>;
const ll MOD = 1000000007;
const ll MAX = 2147483647;
template<typename A, typename B>
ostream& operator<<(ostream& o, pair<A, B> p){
return o << '(' << p.F << ',' << p.S << ')';
}
void Assist(unsigned char *A, int n, int k, int R) {
set<int> q;
vector<bool> ok(n);
for(int i = 0; i < k; i++){
if(A[i]) q.insert(i);
ok[i] = true;
}
for(int i = k; i < k + n; i++){
int c = GetRequest();
q.erase(c);
if(!ok[c]){
assert(!q.empty());
int r = *q.begin();
q.erase(r);
PutBack(r);
ok[r] = false;
ok[c] = true;
}
if(A[i]) q.insert(c);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
484 KB |
Output is correct |
2 |
Runtime error |
3 ms |
820 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
65 ms |
7988 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
609 ms |
59620 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
28 ms |
3708 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
647 ms |
73816 KB |
Execution killed with signal 6 |
2 |
Runtime error |
583 ms |
73876 KB |
Execution killed with signal 6 |
3 |
Runtime error |
610 ms |
74104 KB |
Execution killed with signal 6 |
4 |
Runtime error |
643 ms |
74072 KB |
Execution killed with signal 6 |
5 |
Runtime error |
696 ms |
73960 KB |
Execution killed with signal 6 |
6 |
Runtime error |
648 ms |
73980 KB |
Execution killed with signal 6 |
7 |
Runtime error |
627 ms |
73968 KB |
Execution killed with signal 6 |
8 |
Runtime error |
611 ms |
73960 KB |
Execution killed with signal 6 |
9 |
Runtime error |
677 ms |
73992 KB |
Execution killed with signal 6 |
10 |
Runtime error |
705 ms |
73124 KB |
Execution killed with signal 6 |