#include "advisor.h"
#include <bits/stdc++.h>
#define vi vector<int>
#define vb vector<bool>
#define ii pair<int,int>
#define vvi vector<vi>
#define vvb vector<vb>
#define vii vector<ii>
#define vvii vector<vii>
#define x first
#define y second
#define pb push_back
#define mp make_pair
#define loop(i,s,e) for(int i=s;i<e;i++)
#define loopr(i,s,e) for(int i=e-1;i>=s;i--)
#define chkmax(a,b) a=max(a,b)
#define chkmin(a,b) a=min(a,b)
#define all(x) x.begin(),x.end()
using namespace std;
const int INF = 1e9, MOD=1e9+7;
void ComputeAdvice(int *C, int n, int k, int M) {
vi a(n+k);
loop(i,0,k) a[i]=i;
loop(i,0,n) a[i+k]=C[i];
vi next(n+k);
vi last(n, n+k+1);
loopr(i,0,n+k) {
next[i] = last[a[i]];
last[a[i]] = i;
}
map<int, int> q;
map<int, int> in;
loop(i,0,k) {
q[-next[i]] = i;
in[i] = i;
}
vb bits(n+k,0);
loop(i,k,n+k){
if (in.find(a[i])!=in.end()){ //already in
bits[in[a[i]]] = 1;
q.erase(i);
}
else{ //out
ii cur = *q.begin(); q.erase(q.begin());
bits[cur.y] = 0;
in.erase(a[cur.y]);
}
q[-next[i]] = i;
in[a[i]] = i;
}
loop(i,0,n+k) WriteAdvice(bits[i]);
}
/*
color a
cls
g++ advisor.cpp -o a & a
*/
#include "assistant.h"
#include <bits/stdc++.h>
#define vi vector<int>
#define vb vector<bool>
#define ii pair<int,int>
#define vvi vector<vi>
#define vvb vector<vb>
#define vii vector<ii>
#define vvii vector<vii>
#define x first
#define y second
#define pb push_back
#define mp make_pair
#define loop(i,s,e) for(int i=s;i<e;i++)
#define loopr(i,s,e) for(int i=e-1;i>=s;i--)
#define chkmax(a,b) a=max(a,b)
#define chkmin(a,b) a=min(a,b)
#define all(x) x.begin(),x.end()
using namespace std;
const int INF = 1e9, MOD=1e9+7;
void Assist(unsigned char *A, int n, int k, int R) {
set<int> s;
set<int> fre;
loop(i,0,k) {
s.insert(i);
if (!A[i]) fre.insert(i);
}
//cout<<"HI"<<endl;
loop(i,k,n+k){
int v = GetRequest();
if (s.find(v)!=s.end()){
if (fre.find(v)!=fre.end()) fre.erase(v);
}
else{
int back = *fre.begin();
PutBack(back);
s.erase(back);
fre.erase(back);
}
s.insert(v);
if (!A[i]) fre.insert(v);
}
}
/*
color a
cls
g++ assistant.cpp -o a & a
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
788 KB |
Output is correct |
2 |
Incorrect |
1 ms |
776 KB |
Output isn't correct - not an optimal way |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
17 ms |
1560 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
170 ms |
8176 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
1188 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
206 ms |
9128 KB |
Output isn't correct - not an optimal way |
2 |
Incorrect |
213 ms |
9456 KB |
Output isn't correct - not an optimal way |
3 |
Incorrect |
232 ms |
10224 KB |
Output isn't correct - not an optimal way |
4 |
Incorrect |
244 ms |
10224 KB |
Output isn't correct - not an optimal way |
5 |
Incorrect |
221 ms |
10224 KB |
Output isn't correct - not an optimal way |
6 |
Incorrect |
218 ms |
10224 KB |
Output isn't correct - not an optimal way |
7 |
Incorrect |
216 ms |
10224 KB |
Output isn't correct - not an optimal way |
8 |
Incorrect |
225 ms |
10224 KB |
Output isn't correct - not an optimal way |
9 |
Incorrect |
229 ms |
10224 KB |
Output isn't correct - not an optimal way |
10 |
Incorrect |
214 ms |
9208 KB |
Output isn't correct - not an optimal way |