QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#455935 | #8819. CNOI Knowledge | hos_lyric | AC ✓ | 93ms | 4340kb | C++14 | 12.3kb | 2024-06-27 02:30:42 | 2024-06-27 02:30:42 |
Judging History
answer
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")
#include <assert.h>
#include <algorithm>
#include <ostream>
#include <string>
#include <utility>
#include <vector>
#ifndef LIBRA_SUFFIX_ARRAY_H_
#define LIBRA_SUFFIX_ARRAY_H_
#include <string.h>
#include <algorithm>
#include <string>
#include <utility>
#include <vector>
using std::min;
using std::string;
using std::swap;
using std::vector;
////////////////////////////////////////////////////////////////////////////////
// SA-IS
// String: string, vector<int>, vector<long long>
// if sigma <= n, O(n) time, O(n) space
// if sigma > n, O(n log n) time, O(n) space
template <class String> vector<int> suffixArrayRec(const String &as) {
const int n = as.size();
if (n == 0) return {};
const auto minmaxA = minmax_element(as.begin(), as.end());
const auto minA = *minmaxA.first, maxA = *minmaxA.second;
if (static_cast<unsigned long long>(maxA) - minA >=
static_cast<unsigned long long>(n)) {
vector<int> us(n);
for (int u = 0; u < n; ++u) us[u] = u;
std::sort(us.begin(), us.end(), [&](int u, int v) -> bool {
return (as[u] < as[v]);
});
int b = 0;
vector<int> bs(n, 0);
for (int i = 1; i < n; ++i) {
if (as[us[i - 1]] != as[us[i]]) ++b;
bs[us[i]] = b;
}
return suffixArrayRec(bs);
}
const int sigma = maxA - minA + 1;
vector<int> pt(sigma + 1, 0), poss(sigma);
for (int u = 0; u < n; ++u) ++pt[as[u] - minA + 1];
for (int a = 0; a < sigma; ++a) pt[a + 1] += pt[a];
// cmp[u] := (as[u, n) < as[u + 1, n))
vector<bool> cmp(n);
cmp[n - 1] = false;
for (int u = n - 1; --u >= 0; ) {
cmp[u] = (as[u] != as[u + 1]) ? (as[u] < as[u + 1]) : cmp[u + 1];
}
// ><, nn - id (0 <= id < n)
int nn = 0;
vector<int> ids(n, 0);
int last = n;
vector<int> nxt(n, 0);
// put ><, from the tail of each bucket
vector<int> us(n, 0);
memcpy(poss.data(), pt.data() + 1, sigma * sizeof(int));
for (int u = n - 1; --u >= 1; ) if (!cmp[u - 1] && cmp[u]) {
ids[u] = ++nn;
nxt[u] = last;
last = u;
us[--poss[as[u] - minA]] = u;
}
// follow > backwards, from the head of each bucket
memcpy(poss.data(), pt.data(), sigma * sizeof(int));
us[poss[as[n - 1] - minA]++] = n - 1;
for (int i = 0; i < n; ++i) {
const int u = us[i];
if (u && !cmp[u - 1]) us[poss[as[u - 1] - minA]++] = u - 1;
}
// follow < backwards, from the tail of each bucket
memcpy(poss.data(), pt.data() + 1, sigma * sizeof(int));
for (int i = n; --i >= 0; ) {
const int u = us[i];
if (u && cmp[u - 1]) us[--poss[as[u - 1] - minA]] = u - 1;
}
if (nn) {
int vsLen = 0;
vector<int> vs(nn);
for (const int u : us) if (ids[u]) vs[vsLen++] = u;
int b = 0;
vector<int> bs(nn, 0);
for (int j = 1; j < nn; ++j) {
// as[v1, w1] (< or =) as[v0, w0]
int v1 = vs[j - 1], v0 = vs[j];
const int w1 = nxt[v1], w0 = nxt[v0];
if (w1 - v1 != w0 - v0) {
++b;
} else {
for (; ; ++v1, ++v0) {
if (v1 == n) { ++b; break; }
if (as[v1] != as[v0]) { ++b; break; }
if (v1 == w1) break;
}
}
bs[nn - ids[vs[j]]] = b;
}
for (int u = 0; u < n; ++u) if (ids[u]) vs[nn - ids[u]] = u;
const auto sub = suffixArrayRec(bs);
// put ><, from the tail of each bucket
memset(us.data(), 0, n * sizeof(int));
memcpy(poss.data(), pt.data() + 1, sigma * sizeof(int));
for (int j = nn; --j >= 0; ) {
const int u = vs[sub[j]];
us[--poss[as[u] - minA]] = u;
}
// follow > backwards, from the head of each bucket
memcpy(poss.data(), pt.data(), sigma * sizeof(int));
us[poss[as[n - 1] - minA]++] = n - 1;
for (int i = 0; i < n; ++i) {
const int u = us[i];
if (u && !cmp[u - 1]) us[poss[as[u - 1] - minA]++] = u - 1;
}
// follow < backwards, from the tail of each bucket
memcpy(poss.data(), pt.data() + 1, sigma * sizeof(int));
for (int i = n; --i >= 0; ) {
const int u = us[i];
if (u && cmp[u - 1]) us[--poss[as[u - 1] - minA]] = u - 1;
}
}
return us;
}
// us[i]: i-th suffix
// su[u]: index of as[u, n)
// hs[i]: longest common prefix of as[us[i - 1], n) and as[us[i], n)
struct SuffixArray {
int n;
bool rmq;
vector<int> us, su, hs;
SuffixArray() : n(0), rmq(false) {}
SuffixArray(const string &as, bool rmq_) : rmq(rmq_) { build(as); }
SuffixArray(const vector<int> &as, bool rmq_) : rmq(rmq_) { build(as); }
SuffixArray(const vector<long long> &as, bool rmq_) : rmq(rmq_) { build(as); }
template <class String> void build(const String &as) {
n = as.size();
us = suffixArrayRec(as);
su.resize(n + 1);
for (int i = 0; i < n; ++i) su[us[i]] = i;
su[n] = -1;
hs.assign(n, 0);
for (int h = 0, u = 0; u < n; ++u) if (su[u]) {
for (int v = us[su[u] - 1]; v + h < n && as[v + h] == as[u + h]; ++h) {}
hs[su[u]] = h;
if (h) --h;
}
if (rmq) {
const int logN = n ? (31 - __builtin_clz(n)) : 0;
hs.resize((logN + 1) * n - (1 << logN) + 1);
for (int e = 0; e < logN; ++e) {
int *hes = hs.data() + e * n;
for (int i = 0; i <= n - (1 << (e + 1)); ++i) {
hes[n + i] = min(hes[i], hes[i + (1 << e)]);
}
}
}
}
// Returns longest common prefix of as[u, n) and as[v, n).
// 0 <= u, v <= n
// Assumes rmq.
inline int lcp(int u, int v) const {
if (u == v) return n - u;
int i = su[u], j = su[v];
if (i > j) swap(i, j);
const int e = 31 - __builtin_clz(j - i);
return min(hs[e * n + i + 1], hs[e * n + j + 1 - (1 << e)]);
}
};
////////////////////////////////////////////////////////////////////////////////
#endif // LIBRA_SUFFIX_ARRAY_H_
using std::ostream;
using std::min;
using std::max;
using std::pair;
using std::string;
using std::vector;
// before HLD:
// 0 <= u <= n: suffix [u, n) (n: root, empty string)
// n < u < m: LCA needed
// after HLD:
// DFS-order
// 0: root, empty string
// perm[u]: suffix[u, n) (0 <= u <= n)
struct SuffixTree {
int n, m;
SuffixArray sa;
struct Node {
int par, len, occ;
inline int l() const { return occ; }
inline int r() const { return occ + len; }
};
vector<Node> nodes;
vector<int> perm;
SuffixTree() {}
SuffixTree(const string &str, bool lastOcc) { build(str, lastOcc); }
SuffixTree(const vector<int> &str, bool lastOcc) { build(str, lastOcc); }
SuffixTree(const vector<long long> &str, bool lastOcc) { build(str, lastOcc); }
template <class String> void build(const String &str, bool lastOcc) {
n = str.size();
m = n + 1;
sa = SuffixArray(str, /*rmq=*/false);
nodes.resize(2 * n + 1);
nodes[n] = Node{/*par=*/-1, /*len=*/0, /*occ=*/lastOcc ? n : 0};
int top = 0;
vector<int> stack(n + 1);
stack[0] = n;
for (int i = 0; i < n; ++i) {
const int u = sa.us[i];
int v = -1;
for (; nodes[stack[top]].len > sa.hs[i]; --top) {
v = stack[top];
nodes[nodes[v].par].occ = lastOcc ? max(nodes[nodes[v].par].occ, nodes[v].occ) : min(nodes[nodes[v].par].occ, nodes[v].occ);
}
if (nodes[stack[top]].len < sa.hs[i]) {
const int w = m++;
nodes[w] = Node{/*par=*/nodes[v].par, /*len=*/sa.hs[i], /*occ=*/nodes[v].occ};
stack[++top] = nodes[v].par = w;
}
nodes[u] = Node{/*par=*/stack[top], /*len=*/n - u, /*occ=*/u};
stack[++top] = u;
}
for (; top; --top) {
const int v = stack[top];
nodes[nodes[v].par].occ = lastOcc ? max(nodes[nodes[v].par].occ, nodes[v].occ) : min(nodes[nodes[v].par].occ, nodes[v].occ);
}
nodes.resize(m);
runHld();
}
inline const Node &operator[](int u) const {
return nodes[u];
}
inline int size(int u) const {
return (~nodes[u].par) ? (nodes[u].len - nodes[nodes[u].par].len) : 1;
}
// Reindexes nodes by DFS-order.
// Ignores character order.
// Subtrees at the same "color" are isomorphic, should have the same HLD.
// old u -> new perm[u]
vector<int> pt, g, head;
void runHld() {
pt.assign(m + 1, 0);
for (int u = 0; u < m; ++u) if (u != n) ++pt[nodes[u].par];
for (int u = 0; u < m; ++u) pt[u + 1] += pt[u];
g.resize(pt[m]);
for (int u = m; --u >= 0; ) if (u != n) g[--pt[nodes[u].par]] = u;
vector<int> sz(m, 1);
dfsSz(n, sz);
int zeit = 0;
perm.resize(m);
head.resize(m);
head[n] = 0;
dfsHld(n, zeit, sz);
assert(zeit == m);
vector<Node> nodesReindexed(m);
for (int u = 0; u < m; ++u) {
Node &node = nodesReindexed[perm[u]] = nodes[u];
if (~node.par) node.par = perm[node.par];
}
nodes.swap(nodesReindexed);
for (int u = 0; u <= m; ++u) pt[u] = 0;
for (int u = 1; u < m; ++u) ++pt[nodes[u].par];
for (int u = 1; u < m; ++u) pt[u + 1] += pt[u];
g.resize(pt[m]);
for (int u = m; --u >= 1; ) g[--pt[nodes[u].par]] = u;
}
void dfsSz(int u, vector<int> &sz) {
for (int i = pt[u]; i < pt[u + 1]; ++i) {
dfsSz(g[i], sz);
sz[u] += sz[g[i]];
}
}
void dfsHld(int u, int &zeit, vector<int> &sz) {
perm[u] = zeit++;
if (pt[u] < pt[u + 1]) {
int im = pt[u];
for (int i = pt[u] + 1; i < pt[u + 1]; ++i) if (sz[g[im]] < sz[g[i]]) im = i;
swap(g[pt[u]], g[im]);
head[zeit] = head[zeit - 1];
dfsHld(g[pt[u]], zeit, sz);
for (int i = pt[u] + 1; i < pt[u + 1]; ++i) {
head[zeit] = zeit;
dfsHld(g[i], zeit, sz);
}
}
}
// Returns the shallowest node representing [l, r') for r <= r'.
int locate(int l, int r) const {
assert(0 <= l); assert(l <= r); assert(r <= n);
for (int u = perm[l]; ; ) {
const int h = head[u];
const int p = nodes[h].par;
if (!~p || nodes[p].len < r - l) {
int lo = h - 1, hi = u;
for (; lo + 1 < hi; ) {
const int mid = (lo + hi) / 2;
((nodes[mid].len < r - l) ? lo : hi) = mid;
}
return hi;
}
u = p;
}
}
};
////////////////////////////////////////////////////////////////////////////////
int solve(const vector<int> &str) {
const SuffixTree st(str, false);
int ans = 0;
for (int u = 1; u < st.m; ++u) {
ans += st.size(u);
}
return ans;
}
int N;
int ask(int l, int r) {
printf("? %d %d\n", l + 1, r);
fflush(stdout);
int res;
scanf("%d", &res);
return res;
}
int main() {
scanf("%d", &N);
int id = 0;
vector<int> ans(N, 0);
for (int i = 0; i < N; ++i) {
// same in [*, i)
int lo = -1, hi = i;
for (; lo + 1 < hi; ) {
const int mid = (lo + hi) / 2;
const int res0 = solve(vector<int>(ans.begin() + mid, ans.begin() + i));
const int res1 = ask(mid, i + 1);
((res1 - res0 < (i + 1) - mid) ? lo : hi) = mid;
}
if (lo == -1) {
ans[i] = ++id;
} else {
ans[i] = ans[lo];
}
}
printf("!");
for (int i = 0; i < N; ++i) {
printf(" %d", ans[i]);
}
puts("");
fflush(stdout);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3812kb
input:
12 3 6 6 10 10 15 10 21 15 27 20 14 6 9 20 34 43 19 9 5 2 25 8 5 25 9 19
output:
? 1 2 ? 1 3 ? 2 4 ? 1 4 ? 2 5 ? 1 5 ? 3 6 ? 1 6 ? 3 7 ? 1 7 ? 2 7 ? 4 8 ? 6 8 ? 5 8 ? 4 9 ? 2 9 ? 1 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 8 11 ? 9 11 ? 6 12 ? 9 12 ? 7 12 ! 1 2 3 4 5 6 2 5 7 7 5 6
result:
ok Accepted. 27 queries used.
Test #2:
score: 0
Accepted
time: 78ms
memory: 4012kb
input:
1000 3 5 2 3 2 7 11 8 5 2 11 3 2 11 5 7 15 8 5 3 15 8 5 2 19 7 3 2 19 4 3 2 23 5 3 2 20 5 3 2 23 5 3 2 23 9 13 15 31 14 8 5 3 31 15 7 5 3 41 16 8 5 2 45 15 7 3 2 55 20 7 15 11 58 21 8 5 2 68 21 8 5 69 21 8 5 2 80 26 12 5 8 79 24 12 5 2 89 24 12 5 8 87 26 11 5 3 100 32 11 5 2 100 31 11 5 8 112 31 12 ...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 3 4 ? 2 5 ? 1 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 6 7 ? 4 8 ? 6 8 ? 5 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ?...
result:
ok Accepted. 8880 queries used.
Test #3:
score: 0
Accepted
time: 77ms
memory: 4012kb
input:
1000 2 3 2 5 7 8 5 2 7 3 2 11 5 7 11 5 2 15 7 3 2 14 4 3 2 17 4 3 2 13 4 3 2 15 5 3 2 15 51 32 23 23 11 5 2 28 12 5 8 36 16 8 5 2 38 16 7 3 2 45 14 4 3 2 44 14 7 9 50 20 8 5 2 54 19 7 3 2 64 19 4 3 2 65 17 4 3 2 76 24 9 17 11 76 24 11 5 2 88 24 12 5 8 87 26 12 5 2 100 32 12 5 8 102 33 11 5 3 116 32 ...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 1 4 ? 2 5 ? 3 5 ? 4 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 4 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 3 14 ? 5 14 ? 6 14 ? 7 15 ? 11 15 ? 13 15 ? 14 1...
result:
ok Accepted. 8879 queries used.
Test #4:
score: 0
Accepted
time: 82ms
memory: 4060kb
input:
1000 3 5 3 5 2 8 5 8 5 2 12 5 8 12 5 2 16 7 3 2 16 7 11 21 8 5 3 20 7 5 3 27 11 5 2 27 11 3 2 33 9 3 2 31 5 3 2 36 6 4 3 2 31 6 4 3 2 35 6 4 3 2 35 11 17 26 44 17 8 5 3 44 19 8 5 2 53 19 7 3 2 53 19 4 3 2 62 24 9 19 14 63 24 11 5 3 71 24 11 5 2 69 24 11 3 2 81 29 11 5 7 81 27 11 5 3 96 30 11 5 3 99 ...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 3 4 ? 2 5 ? 3 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 4 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 7 10 ? 6 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ? 8 16 ?...
result:
ok Accepted. 8882 queries used.
Test #5:
score: 0
Accepted
time: 70ms
memory: 3960kb
input:
1000 2 3 2 5 7 8 5 3 8 5 2 11 3 2 9 3 2 11 4 3 2 6 4 3 2 13 34 27 20 17 8 5 2 24 12 5 8 26 11 5 3 32 11 5 2 31 11 5 8 36 14 8 5 3 36 15 7 5 3 44 14 7 5 3 41 11 7 5 3 52 17 8 5 2 55 19 8 5 65 21 8 5 2 65 21 8 5 76 26 12 5 2 75 24 12 5 8 87 26 11 5 3 87 26 11 5 2 98 31 11 5 8 95 31 12 5 2 105 31 12 5 ...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 1 4 ? 2 5 ? 3 5 ? 4 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 6 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 2 11 ? 3 11 ? 4 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 10 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14...
result:
ok Accepted. 8863 queries used.
Test #6:
score: 0
Accepted
time: 93ms
memory: 4028kb
input:
1000 2 5 5 2 8 5 8 5 2 12 5 8 12 5 2 16 8 5 16 8 5 2 20 8 5 21 8 5 3 27 11 5 3 26 9 5 3 31 9 5 3 27 9 5 3 34 14 8 5 2 34 15 8 5 41 14 8 5 3 41 15 7 5 3 48 19 7 5 3 48 17 7 5 3 60 17 8 5 2 63 19 7 3 2 75 25 11 5 7 77 27 11 5 2 90 27 11 3 2 91 27 11 5 7 104 33 11 5 2 104 33 12 5 8 117 31 12 5 2 115 31...
output:
? 1 2 ? 1 3 ? 2 4 ? 3 4 ? 2 5 ? 3 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 4 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 7 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 8 11 ? 9 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ? 8 16 ? 12 16 ? 14 1...
result:
ok Accepted. 8885 queries used.
Test #7:
score: 0
Accepted
time: 69ms
memory: 4340kb
input:
1000 3 5 2 3 2 7 12 8 5 2 11 3 2 11 5 7 15 8 5 3 15 8 5 2 19 7 3 2 22 41 61 50 29 11 5 3 29 11 5 3 37 11 5 2 37 13 23 29 46 18 8 5 3 45 17 7 5 3 53 14 7 5 3 51 11 7 5 3 58 13 7 5 3 57 18 38 29 69 21 9 6 69 22 9 6 80 27 12 6 9 80 28 13 5 3 93 28 13 6 9 94 30 13 6 9 109 38 13 5 2 108 38 13 5 9 122 36 ...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 3 4 ? 2 5 ? 1 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 6 7 ? 4 8 ? 6 8 ? 5 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 3 12 ? 1 12 ? 2 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ? 8...
result:
ok Accepted. 8815 queries used.
Test #8:
score: 0
Accepted
time: 83ms
memory: 4340kb
input:
1000 3 5 2 5 9 9 13 9 5 3 12 5 3 11 5 2 15 7 3 2 17 37 29 22 23 8 5 2 22 7 3 2 27 9 3 2 27 63 44 35 35 12 21 15 35 13 6 9 42 17 9 5 2 42 18 8 5 51 17 8 5 3 52 15 7 5 3 63 21 8 5 2 65 23 46 37 29 76 23 8 5 3 76 23 7 5 3 89 30 12 23 17 89 29 13 6 9 101 29 13 5 2 100 29 12 3 2 114 37 11 5 7 115 38 12 2...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 1 4 ? 2 5 ? 1 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 6 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 2 10 ? 3 10 ? 4 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 3 14 ? 5 14 ? 6 14 ? 7 15 ? 11 15 ? 9 15 ? 10 15 ? 8 1...
result:
ok Accepted. 8823 queries used.
Test #9:
score: 0
Accepted
time: 86ms
memory: 4080kb
input:
1000 3 6 5 2 8 5 8 5 2 13 24 18 13 5 2 18 9 13 18 8 5 3 23 7 5 3 23 9 17 30 13 5 2 29 12 3 2 35 9 3 2 32 5 3 2 37 6 4 3 2 33 6 4 3 2 43 11 24 33 42 15 24 33 51 21 9 6 51 22 9 5 2 61 21 9 17 13 63 23 8 5 2 75 29 11 3 2 80 30 11 5 7 93 29 11 5 2 95 26 12 5 8 107 35 71 53 44 110 37 13 5 3 125 37 13 5 2...
output:
? 1 2 ? 1 3 ? 2 4 ? 3 4 ? 2 5 ? 3 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 1 7 ? 2 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 5 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 9 12 ? 7 12 ? 6 13 ? 9 13 ? 11 13 ? 12 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ? 8 16 ? 12 16 ? 14 16...
result:
ok Accepted. 8815 queries used.
Test #10:
score: 0
Accepted
time: 71ms
memory: 4016kb
input:
1000 2 5 6 9 9 6 9 5 2 12 3 2 12 22 17 17 8 5 3 15 7 5 3 22 43 36 29 23 9 5 2 30 13 5 9 30 13 5 3 37 11 5 2 36 11 5 8 42 14 8 5 3 41 15 7 5 3 50 17 32 41 51 17 9 5 2 62 23 8 5 61 23 9 18 13 71 24 9 5 2 74 24 9 18 13 86 30 13 6 9 87 30 13 5 3 100 29 12 5 3 100 28 9 5 3 115 36 12 21 15 115 35 13 5 3 1...
output:
? 1 2 ? 1 3 ? 2 4 ? 1 4 ? 2 5 ? 3 5 ? 3 6 ? 4 6 ? 5 6 ? 3 7 ? 5 7 ? 6 7 ? 4 8 ? 2 8 ? 3 8 ? 4 9 ? 6 9 ? 7 9 ? 8 9 ? 5 10 ? 7 10 ? 8 10 ? 9 10 ? 5 11 ? 2 11 ? 3 11 ? 4 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 11 13 ? 10 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ? 8 16 ?...
result:
ok Accepted. 8811 queries used.
Test #11:
score: 0
Accepted
time: 75ms
memory: 4048kb
input:
1000 2 5 5 2 8 5 9 18 13 6 9 13 5 2 18 8 5 18 9 13 23 9 5 3 24 8 5 2 30 13 24 18 30 13 5 3 37 11 5 2 36 11 3 2 44 17 29 22 45 17 9 12 55 17 9 5 3 55 17 7 5 3 64 21 7 5 3 64 21 9 15 75 21 9 6 76 23 9 5 2 88 30 13 5 8 88 31 13 24 18 102 31 13 5 2 102 31 13 5 9 116 38 13 5 2 116 38 12 5 8 131 37 12 5 2...
output:
? 1 2 ? 1 3 ? 2 4 ? 3 4 ? 2 5 ? 3 5 ? 3 6 ? 1 6 ? 3 7 ? 5 7 ? 4 7 ? 4 8 ? 6 8 ? 7 8 ? 4 9 ? 6 9 ? 7 9 ? 5 10 ? 7 10 ? 6 10 ? 5 11 ? 8 11 ? 9 11 ? 10 11 ? 6 12 ? 9 12 ? 10 12 ? 11 12 ? 6 13 ? 9 13 ? 7 13 ? 8 13 ? 7 14 ? 10 14 ? 12 14 ? 13 14 ? 7 15 ? 11 15 ? 13 15 ? 14 15 ? 8 16 ? 12 16 ? 14 16 ? 15 ...
result:
ok Accepted. 8804 queries used.
Extra Test:
score: 0
Extra Test Passed