# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
271331 |
2020-08-18T05:44:00 Z |
반딧불(#5113) |
Last supper (IOI12_supper) |
C++14 |
|
521 ms |
36164 KB |
#include <bits/stdc++.h>
#include "advisor.h"
using namespace std;
namespace{
int n, k, m, b;
int arr[100002];
int ans[100002];
bool chk[100002];
priority_queue<pair<int, int> > pq;
vector<int> times[100002];
}
void ComputeAdvice(int *ARR, int N, int K, int M){
n = N, k = K, m = M;
if(n<=5000) b=13; else b=17;
for(int i=0; i<n; i++){
arr[i] = ARR[i];
times[arr[i]].push_back(i);
}
for(int i=0; i<n; i++) times[i].push_back(1e9);
for(int i=0; i<n; i++){
reverse(times[i].begin(), times[i].end());
if(i<k) pq.push({times[i].back(), i});
}
for(int i=0; i<k; i++) chk[i] = 1;
for(int i=0; i<n; i++){
times[arr[i]].pop_back();
if(chk[arr[i]]){
ans[i] = n;
pq.push({times[arr[i]].back(), arr[i]});
continue;
}
pair<int, int> tmp = pq.top(); pq.pop();
ans[i] = tmp.second;
chk[tmp.second] = 0;
pq.push({times[arr[i]].back(), arr[i]});
chk[arr[i]] = 1;
}
for(int i=0; i<n; i++){
for(int j=0; j<b; j++){
WriteAdvice(!!(ans[i] & (1<<j)));
}
}
}
#include <bits/stdc++.h>
#include "assistant.h"
using namespace std;
namespace{
int n, k, l, b;
int arr[2000002];
}
void Assist(unsigned char *ARR, int N, int K, int R) {
n = N, k = K, l = R;
if(n<=5000) b=13; else b=20;
for(int i=0; i<R; i++) arr[i] = ARR[i];
for(int i=0; i<n; i++){
GetRequest();
int tmp = 0;
for(int j=0; j<b; j++){
tmp += (1<<j) * arr[i*b+j];
}
if(tmp != n) PutBack(tmp);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
5376 KB |
Output is correct |
2 |
Correct |
3 ms |
5376 KB |
Output is correct |
3 |
Correct |
6 ms |
5632 KB |
Output is correct |
4 |
Correct |
12 ms |
5888 KB |
Output is correct |
5 |
Correct |
19 ms |
6144 KB |
Output is correct |
6 |
Correct |
23 ms |
6144 KB |
Output is correct |
7 |
Correct |
22 ms |
6656 KB |
Output is correct |
8 |
Correct |
26 ms |
6208 KB |
Output is correct |
9 |
Correct |
23 ms |
6144 KB |
Output is correct |
10 |
Correct |
26 ms |
6400 KB |
Output is correct |
11 |
Correct |
22 ms |
6400 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
55 ms |
7664 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
434 ms |
29644 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
5888 KB |
Error - advice is too long |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
510 ms |
36164 KB |
Execution killed with signal 11 |
2 |
Runtime error |
518 ms |
35876 KB |
Execution killed with signal 11 |
3 |
Incorrect |
468 ms |
26872 KB |
Error - Putting back a color when it is already on the scaffold |
4 |
Incorrect |
455 ms |
27096 KB |
Error - Putting back a color when it is already on the scaffold |
5 |
Runtime error |
496 ms |
35984 KB |
Execution killed with signal 11 |
6 |
Incorrect |
464 ms |
27104 KB |
Error - Putting back a color that is not on the scaffold |
7 |
Runtime error |
461 ms |
35908 KB |
Execution killed with signal 11 |
8 |
Runtime error |
505 ms |
36000 KB |
Execution killed with signal 11 |
9 |
Incorrect |
467 ms |
27104 KB |
Error - Putting back a color when it is already on the scaffold |
10 |
Runtime error |
521 ms |
35812 KB |
Execution killed with signal 11 |