#include <bits/stdc++.h>
#include "assistant.h"
#include "advisor.h"
using namespace std;
typedef pair<int,int> pii;
bool useful[200005];
int isthere[200005];
multiset<int> s;
deque<int> poz[200005];
int INF=1e9;
void ComputeAdvice(int *C, int N, int K, int M)
{
for(int i=0;i<K;i++)
poz[i].push_back(i);
for(int j=0;j<N;j++)
poz[C[j]].push_back(j+K);
for(int i=0;i<=N+K;i++)
useful[i]=0;
for(int i=0;i<K;i++)
{
isthere[i]=i+1;
poz[i].pop_front();
if(poz[i].empty())
s.insert(INF);
else
s.insert(poz[i].front());
}
for(int i=0;i<N;i++)
{
int nr=C[i];
if(isthere[nr])
{
useful[isthere[nr]-1]=1;
int p=poz[nr].front();
if(s.find(p)!=s.end())
s.erase(s.find(p));
}
else
{
auto it=prev(s.end());
s.erase(it);
int p=(*it);
if(p<N&&p>=0)
isthere[C[p]]=0;
}
isthere[nr]=poz[nr].front()+1;
poz[nr].pop_front();
if(poz[nr].empty())
s.insert(INF);
else
s.insert(poz[nr].front());
}
for(int i=0;i<N+K;i++)
WriteAdvice(useful[i]);
}
#include <bits/stdc++.h>
#include "assistant.h"
#include "advisor.h"
using namespace std;
typedef pair<int,int> pii;
set<pii> buffer;
int there[200005];
void Assist(unsigned char *A, int N, int K, int R)
{
for(int i=0;i<K;i++)
{
int x=A[i]-'0';
if(x==0)
x=-1;
buffer.insert({x,i});
there[i]=x;
}
for(int i=K;i<N+K;i++)
{
int nr=GetRequest();
if(there[nr])
{
if(buffer.find({there[nr],nr})!=buffer.end())
buffer.erase({there[nr],nr});
}
else
{
auto it=buffer.begin();
int nr=(*it).second;
buffer.erase(it);
there[nr]=0;
PutBack(nr);
}
int x=A[i]-'0';
if(x==0)
x=-1;
there[nr]=x;
buffer.insert({x,nr});
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
135244 KB |
Output is correct |
2 |
Correct |
88 ms |
135152 KB |
Output is correct |
3 |
Correct |
102 ms |
135356 KB |
Output is correct |
4 |
Incorrect |
80 ms |
135408 KB |
Output isn't correct - not an optimal way |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
89 ms |
135784 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
189 ms |
139960 KB |
Output is correct |
2 |
Correct |
220 ms |
141096 KB |
Output is correct |
3 |
Correct |
212 ms |
141216 KB |
Output is correct |
4 |
Correct |
220 ms |
141256 KB |
Output is correct |
5 |
Incorrect |
211 ms |
141888 KB |
Output isn't correct - not an optimal way |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
86 ms |
135348 KB |
Output is correct |
2 |
Correct |
84 ms |
135396 KB |
Output is correct |
3 |
Incorrect |
84 ms |
135552 KB |
Output isn't correct - not an optimal way |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
229 ms |
141964 KB |
Output isn't correct - not an optimal way |
2 |
Correct |
212 ms |
140936 KB |
Output is correct - 122000 bits used |
3 |
Correct |
230 ms |
141220 KB |
Output is correct - 125000 bits used |
4 |
Correct |
210 ms |
141260 KB |
Output is correct - 125000 bits used |
5 |
Correct |
216 ms |
141208 KB |
Output is correct - 125000 bits used |
6 |
Correct |
219 ms |
141284 KB |
Output is correct - 125000 bits used |
7 |
Correct |
221 ms |
141224 KB |
Output is correct - 124828 bits used |
8 |
Correct |
219 ms |
141292 KB |
Output is correct - 124910 bits used |
9 |
Correct |
209 ms |
141164 KB |
Output is correct - 125000 bits used |
10 |
Incorrect |
196 ms |
142400 KB |
Output isn't correct - not an optimal way |