| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 551800 | hoanghq2004 | Carnival (CEOI14_carnival) | C++14 | 12 ms | 208 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
template <typename T>
using ordered_set = tree <T, null_type, less <T>, rb_tree_tag, tree_order_statistics_node_update>;
const int N = 160;
int n, s[N], c[N];
int main() {
ios :: sync_with_stdio(0); cin.tie(0);
auto ask = [&](int x, int y) {
cout << y + 1 << endl;
for (int i = 1; i <= y; ++i) cout << i << ' ';
cout << x << endl;
int z;
cin >> z;
return z;
};
cin >> n;
for (int i = 1; i <= n; ++i) {
int L = 0, R = i - 1;
while (R - L > 1) {
int mid = L + R >> 1;
if (s[mid] != ask(i, mid)) R = mid;
else L = mid;
}
int j = (s[L] != ask(i, L) ? L : R);
s[i] = s[i - 1];
if (j == 0) c[i] = ++s[i];
else c[i] = c[j];
}
cout << 0 << ' ';
for (int i = 1; i <= n; ++i) cout << c[i] << ' ';
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
