# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
361569 |
2021-01-30T15:14:01 Z |
MetB |
Last supper (IOI12_supper) |
C++14 |
|
144 ms |
11916 KB |
#include <iostream>
#include <vector>
#include <set>
#include "advisor.h"
using namespace std;
void ComputeAdvice(int *C, int N, int K, int M) {
vector<vector<int>> last(N);
vector<int> ans(N), ans_k(K);
vector<int> request(N, -1);
vector<int> ptr(N, 0), st(N);
set<pair<int, int>> s;
for (int i = 0; i < N; i++) {
last[C[i]].push_back(i);
}
for (int i = 0; i < N; i++) {
last[i].push_back(N);
}
for (int i = 0; i < K; i++) {
s.insert({last[i][0], i});
ptr[i]++;
st[i] = 1;
}
for (int i = 0; i < N; i++) {
request[C[i]] = i;
if (!st[C[i]]) {
int x = s.rbegin()->second;
s.erase(s.find(*s.rbegin()));
st[x] = 0;
if (request[x] != -1) ans[request[x]] = 1;
else ans_k[x] = 1;
s.insert({last[C[i]][ptr[C[i]]], C[i]});
ptr[C[i]]++;
} else {
s.erase({last[C[i]][ptr[C[i]]-1], C[i]});
s.insert({last[C[i]][ptr[C[i]]], C[i]});
ptr[C[i]]++;
}
st[C[i]] = 1;
}
for (int i = 0; i < K; i++) {
WriteAdvice(ans_k[i]);
}
for (int i = 0; i < N; i++) {
WriteAdvice(ans[i]);
}
}
#include <iostream>
#include <vector>
#include "assistant.h"
using namespace std;
void Assist(unsigned char *A, int N, int K, int R) {
vector<int> st(N);
vector<int> bottom_shelf;
for (int i = 0; i < K; i++) {
if (A[i]) bottom_shelf.push_back(i);
st[i] = 1;
}
A += K;
for (int i = 0; i < N; i++) {
int x = GetRequest();
if (!st[x]) {
PutBack(bottom_shelf.back());
bottom_shelf.pop_back();
}
st[x] = 1;
if (A[i]) bottom_shelf.push_back(x);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
988 KB |
Output is correct |
2 |
Incorrect |
1 ms |
868 KB |
Error - Not putting back color when it is not on the scaffold |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
11 ms |
1836 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
104 ms |
9464 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
1384 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
137 ms |
11560 KB |
Error - Not putting back color when it is not on the scaffold |
2 |
Incorrect |
136 ms |
11596 KB |
Error - Not putting back color when it is not on the scaffold |
3 |
Incorrect |
140 ms |
11824 KB |
Error - Not putting back color when it is not on the scaffold |
4 |
Incorrect |
142 ms |
11728 KB |
Error - Not putting back color when it is not on the scaffold |
5 |
Incorrect |
144 ms |
11916 KB |
Error - Not putting back color when it is not on the scaffold |
6 |
Incorrect |
136 ms |
11832 KB |
Error - Not putting back color when it is not on the scaffold |
7 |
Incorrect |
133 ms |
11580 KB |
Error - Not putting back color when it is not on the scaffold |
8 |
Incorrect |
135 ms |
11828 KB |
Error - Not putting back color when it is not on the scaffold |
9 |
Incorrect |
135 ms |
11688 KB |
Error - Not putting back color when it is not on the scaffold |
10 |
Incorrect |
134 ms |
11852 KB |
Error - Not putting back color when it is not on the scaffold |