QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#239402 | #7685. Barkley II | ucup-team1191# | AC ✓ | 856ms | 83080kb | C++20 | 19.4kb | 2023-11-04 20:30:54 | 2023-11-08 13:12:11 |
Judging History
answer
/*
author: Maksim1744
created: 04.11.2023 15:06:13
*/
#include "bits/stdc++.h"
using namespace std;
using ll = long long;
using ld = long double;
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define sum(a) ( accumulate ((a).begin(), (a).end(), 0ll))
#define mine(a) (*min_element((a).begin(), (a).end()))
#define maxe(a) (*max_element((a).begin(), (a).end()))
#define mini(a) ( min_element((a).begin(), (a).end()) - (a).begin())
#define maxi(a) ( max_element((a).begin(), (a).end()) - (a).begin())
#define lowb(a, x) ( lower_bound((a).begin(), (a).end(), (x)) - (a).begin())
#define uppb(a, x) ( upper_bound((a).begin(), (a).end(), (x)) - (a).begin())
template<typename T> vector<T>& operator-- (vector<T> &v){for (auto& i : v) --i; return v;}
template<typename T> vector<T>& operator++ (vector<T> &v){for (auto& i : v) ++i; return v;}
template<typename T> istream& operator>>(istream& is, vector<T> &v){for (auto& i : v) is >> i; return is;}
template<typename T> ostream& operator<<(ostream& os, vector<T> v){for (auto& i : v) os << i << ' '; return os;}
template<typename T, typename U> pair<T,U>& operator-- (pair<T, U> &p){--p.first; --p.second; return p;}
template<typename T, typename U> pair<T,U>& operator++ (pair<T, U> &p){++p.first; ++p.second; return p;}
template<typename T, typename U> istream& operator>>(istream& is, pair<T, U> &p){is >> p.first >> p.second; return is;}
template<typename T, typename U> ostream& operator<<(ostream& os, pair<T, U> p){os << p.first << ' ' << p.second; return os;}
template<typename T, typename U> pair<T,U> operator-(pair<T,U> a, pair<T,U> b){return mp(a.first-b.first, a.second-b.second);}
template<typename T, typename U> pair<T,U> operator+(pair<T,U> a, pair<T,U> b){return mp(a.first+b.first, a.second+b.second);}
template<typename T, typename U> void umin(T& a, U b){if (a > b) a = b;}
template<typename T, typename U> void umax(T& a, U b){if (a < b) a = b;}
#ifdef HOME
#define SHOW_COLORS
#include "/mnt/c/Libs/tools/print.cpp"
#else
#define show(...) void(0)
#define debugf(fun) fun
#define debugv(var) var
#define mclock void(0)
#define shows void(0)
#define debug if (false)
#define OSTREAM(...) ;
#define OSTREAM0(...) ;
#endif
template<typename T>
struct fenwick {
vector<T> tree;
int n;
int K;
fenwick(int n = 0) : n(n) {
tree.assign(n, 0);
K = 0;
while ((1 << K) <= n)
++K;
}
void add(int i, T k) {
for (; i < n; i = (i | (i + 1)))
tree[i] += k;
}
T ask(int r) {
T res = 0;
for (; r >= 0; r = (r & (r + 1)) - 1)
res += tree[r];
return res;
}
T ask(int l, int r) {
if (l > r) return 0;
return ask(r) - ask(l - 1);
}
// find first i such that sum[0..i] >= x
int lower_bound(T x) {
int cur = 0;
T cur_sum = 0;
for (int k = K - 1; k >= 0; --k) {
int ind = cur | ((1 << k) - 1);
if (ind >= n) continue;
if (cur_sum + tree[ind] >= x) continue;
cur_sum += tree[ind];
cur |= (1 << k);
}
return cur;
}
};
namespace segtree {
// This implementation is disgusting, but it seems to work and do it faster than previous version.
template<typename Item>
Item tree_merge(const Item& a, const Item& b) {
Item i;
i.update(a, b);
return i;
}
template<typename Item, bool lazy>
struct Pusher {};
template<typename Item>
struct Pusher<Item, false> {
void push(const vector<Item>&, int, int, int) {}
Item ask_on_segment(const vector<Item>& tree, int n, int l, int r) {
l |= n;
r |= n;
Item resl, resr;
while (l <= r) {
if (l & 1) {
resl = tree_merge(resl, tree[l]);
++l;
}
if (!(r & 1)) {
resr = tree_merge(tree[r], resr);
--r;
}
l >>= 1;
r >>= 1;
}
return tree_merge(resl, resr);
}
void push_point(const vector<Item>&, int, int) {}
template<typename P>
int lower_bound(const vector<Item>& tree, int n, int l, P p) {
Item cur;
if (p(cur)) return l - 1;
l |= n;
int r = n | (n - 1);
// carefully go up
while (true) {
if (p(tree_merge(cur, tree[l]))) {
break;
}
if (l == r) return n;
if (l & 1) {
cur = tree_merge(cur, tree[l]);
++l;
}
l >>= 1;
r >>= 1;
}
// usual descent from l
while (l < n) {
if (p(tree_merge(cur, tree[l * 2]))) {
l = l * 2;
} else {
cur = tree_merge(cur, tree[l * 2]);
l = l * 2 + 1;
}
}
return (l ^ n);
}
template<typename P>
int lower_bound_rev(const vector<Item>& tree, int n, int r, P p) {
Item cur;
if (p(cur)) return r + 1;
r |= n;
int l = n;
// carefully go up
while (true) {
if (p(tree_merge(tree[r], cur))) {
break;
}
if (l == r) return -1;
if (!(r & 1)) {
cur = tree_merge(tree[r], cur);
--r;
}
l >>= 1;
r >>= 1;
}
// usual descent from r
while (r < n) {
if (p(tree_merge(tree[r * 2 + 1], cur))) {
r = r * 2 + 1;
} else {
cur = tree_merge(tree[r * 2 + 1], cur);
r = r * 2;
}
}
return (r ^ n);
}
};
template<typename Item>
struct Pusher<Item, true> {
void push(vector<Item>& tree, int ind, int l, int r) {
tree[ind].push(tree[ind * 2], tree[ind * 2 + 1], l, r);
}
Item ask_on_segment(vector<Item>& tree, int n, int l, int r) {
int vl = 0, vr = n - 1;
int i = 1;
Item result;
while (vl != vr) {
int m = (vl + vr) / 2;
if (l > m) {
push(tree, i, vl, vr);
i = i * 2 + 1;
vl = m + 1;
} else if (r <= m) {
push(tree, i, vl, vr);
i = i * 2;
vr = m;
} else {
break;
}
}
if (l == vl && r == vr) {
return tree[i];
}
push(tree, i, vl, vr);
// left
{
int ind = i * 2;
int L = vl, R = (vl + vr) / 2;
while (l != L) {
int m = (L + R) / 2;
push(tree, ind, L, R);
if (l <= m) {
result = tree_merge(tree[ind * 2 + 1], result);
ind *= 2;
R = m;
} else {
ind = ind * 2 + 1;
L = m + 1;
}
}
result = tree_merge(tree[ind], result);
}
// right
{
int ind = i * 2 + 1;
int L = (vl + vr) / 2 + 1, R = vr;
while (r != R) {
int m = (L + R) / 2;
push(tree, ind, L, R);
if (r > m) {
result = tree_merge(result, tree[ind * 2]);
ind = ind * 2 + 1;
L = m + 1;
} else {
ind = ind * 2;
R = m;
}
}
result = tree_merge(result, tree[ind]);
}
return result;
}
void push_point(vector<Item>& tree, int n, int ind) {
int l = 0, r = n - 1;
int i = 1;
while (l != r) {
push(tree, i, l, r);
int m = (l + r) / 2;
if (ind <= m) {
r = m;
i *= 2;
} else {
l = m + 1;
i = i * 2 + 1;
}
}
}
template<typename P>
pair<int, Item> _lower_bound(vector<Item>& tree, int l, P p, Item cur, int i, int vl, int vr) {
if (vl == vr) {
if (p(tree_merge(cur, tree[i]))) {
return {vl, tree[i]};
} else {
return {vl + 1, tree[i]};
}
}
push(tree, i, vl, vr);
int m = (vl + vr) / 2;
if (l > m) {
return _lower_bound(tree, l, p, cur, i * 2 + 1, m + 1, vr);
} else if (l <= vl) {
if (!p(tree_merge(cur, tree[i]))) {
return {vr + 1, tree_merge(cur, tree[i])};
}
if (p(tree_merge(cur, tree[i * 2]))) {
return _lower_bound(tree, l, p, cur, i * 2, vl, m);
} else {
return _lower_bound(tree, l, p, tree_merge(cur, tree[i * 2]), i * 2 + 1, m + 1, vr);
}
} else {
auto [ind, it] = _lower_bound(tree, l, p, cur, i * 2, vl, m);
if (ind <= m) return {ind, it};
return _lower_bound(tree, l, p, it, i * 2 + 1, m + 1, vr);
}
}
template<typename P>
int lower_bound(vector<Item>& tree, int n, int l, P p) {
Item cur;
if (p(cur)) return l - 1;
return _lower_bound(tree, l, p, cur, 1, 0, n - 1).first;
}
template<typename P>
pair<int, Item> _lower_bound_rev(vector<Item>& tree, int r, P p, Item cur, int i, int vl, int vr) {
if (vl == vr) {
if (p(tree_merge(tree[i], cur))) {
return {vl, tree[i]};
} else {
return {vl - 1, tree[i]};
}
}
push(tree, i, vl, vr);
int m = (vl + vr) / 2;
if (r <= m) {
return _lower_bound_rev(tree, r, p, cur, i * 2, vl, m);
} else if (r >= vr) {
if (!p(tree_merge(tree[i], cur))) {
return {vl - 1, tree_merge(cur, tree[i])};
}
if (p(tree_merge(tree[i * 2 + 1], cur))) {
return _lower_bound_rev(tree, r, p, cur, i * 2 + 1, m + 1, vr);
} else {
return _lower_bound_rev(tree, r, p, tree_merge(tree[i * 2 + 1], cur), i * 2, vl, m);
}
} else {
auto [ind, it] = _lower_bound_rev(tree, r, p, cur, i * 2 + 1, m + 1, vr);
if (ind > m) return {ind, it};
return _lower_bound_rev(tree, r, p, it, i * 2, vl, m);
}
}
template<typename P>
int lower_bound_rev(vector<Item>& tree, int n, int r, P p) {
Item cur;
if (p(cur)) return r + 1;
return _lower_bound_rev(tree, r, p, cur, 1, 0, n - 1).first;
}
};
template<typename Item, bool lazy = false>
struct Segtree {
vector<Item> tree;
Pusher<Item, lazy> pusher;
int n;
int n0;
Segtree(int n = 0) {
build(n);
}
template<typename U>
Segtree(const vector<U>& v) {
build(v);
}
void build(int n) {
this->n0 = n;
while (n & (n - 1)) ++n;
this->n = n;
tree.assign(n * 2, {});
}
template<typename U>
void build(const vector<U>& v) {
build(v.size());
for (int i = 0; i < v.size(); ++i) {
tree[n | i].init(v[i], i);
}
build();
}
void build() {
for (int i = n - 1; i >= 1; --i) {
tree[i].update(tree[i * 2], tree[i * 2 + 1]);
}
}
void push(int ind, int l, int r) {
pusher.push(tree, ind, l, r);
}
template<typename T>
void set(int ind, const T& t) {
pusher.push_point(tree, n, ind);
ind |= n;
tree[ind].init(t, ind ^ n);
ind >>= 1;
while (ind) {
tree[ind].update(tree[ind * 2], tree[ind * 2 + 1]);
ind >>= 1;
}
}
template<typename T>
void update(int ind, const T& t) {
pusher.push_point(tree, n, ind);
ind |= n;
tree[ind].update(t, ind ^ n);
ind >>= 1;
while (ind) {
tree[ind].update(tree[ind * 2], tree[ind * 2 + 1]);
ind >>= 1;
}
}
Item& ith(int ind) {
static_assert(!lazy, "don't use this method with lazy propagation, unless you're sure you need it");
return tree[ind | n];
}
const Item& root() const {
return tree[1];
}
Item ask(int l, int r) {
l = max(l, 0);
r = min(r, n - 1);
if (l > r) return {};
return pusher.ask_on_segment(tree, n, l, r);
}
template<typename T>
void modify(int l, int r, const T& t) {
static_assert(lazy, "lazy must be set to true to use this function");
l = max(l, 0);
r = min(r, n - 1);
if (l > r) return;
int vl = 0, vr = n - 1;
int i = 1;
while (vl != vr) {
int m = (vl + vr) / 2;
if (l > m) {
push(i, vl, vr);
i = i * 2 + 1;
vl = m + 1;
} else if (r <= m) {
push(i, vl, vr);
i = i * 2;
vr = m;
} else {
break;
}
}
if (l == vl && r == vr) {
tree[i].modify(t, l, r);
} else {
push(i, vl, vr);
// left
{
int ind = i * 2;
int L = vl, R = (vl + vr) / 2;
while (l != L) {
int m = (L + R) / 2;
push(ind, L, R);
if (l <= m) {
tree[ind * 2 + 1].modify(t, m + 1, R);
ind *= 2;
R = m;
} else {
ind = ind * 2 + 1;
L = m + 1;
}
}
tree[ind].modify(t, L, R);
ind >>= 1;
while (ind != i) {
tree[ind].update(tree[ind * 2], tree[ind * 2 + 1]);
ind >>= 1;
}
}
// right
{
int ind = i * 2 + 1;
int L = (vl + vr) / 2 + 1, R = vr;
while (r != R) {
int m = (L + R) / 2;
push(ind, L, R);
if (r > m) {
tree[ind * 2].modify(t, L, m);
ind = ind * 2 + 1;
L = m + 1;
} else {
ind = ind * 2;
R = m;
}
}
tree[ind].modify(t, L, R);
ind >>= 1;
while (ind != i) {
tree[ind].update(tree[ind * 2], tree[ind * 2 + 1]);
ind >>= 1;
}
}
tree[i].update(tree[i * 2], tree[i * 2 + 1]);
}
i >>= 1;
while (i) {
tree[i].update(tree[i * 2], tree[i * 2 + 1]);
i >>= 1;
}
}
// first index r such that p(tree.ask(l, r)) == true
// if p() is true for empty item, return l-1
// if p() is never true, returns n
template<typename P>
int lower_bound(int l, P p) {
l = max(l, 0);
if (l >= n0) return n0;
return min(n0, pusher.lower_bound(tree, n, l, p));
}
// similarly to lower_bound, returns first (largest) l such that p(tree.ask(l, r)) == true
template<typename P>
int lower_bound_rev(int r, P p) {
r = min(r, n0 - 1);
if (r < 0) return -1;
return pusher.lower_bound_rev(tree, n, r, p);
}
};
}
using segtree::Segtree;
struct Item {
int mn = 1e9;
template<typename T>
void init(const T& t, int ind) {
mn = t;
}
void update(const Item& a, const Item& b) {
mn = min(a.mn, b.mn);
}
//// similar to init, but more convenient for doing a[i] += x, implement only if needed
// template<typename T>
// void update(const T& t, int ind) {}
//// apply here, save for children
// template<typename T>
// void modify(const T& m, int l, int r) {}
// void push(Item& a, Item& b, int l, int r) {
// int m = (l + r) / 2;
// a.modify(mod, l, m);
// b.modify(mod, m + 1, r);
// // reset mod
// }
};
void test_case(int test) {
int n, m;
cin >> n >> m;
vector<int> a(n);
cin >> a;
map<int, vector<int>> where;
for (int i = 0; i < n; ++i) {
where[a[i]].pb(i);
}
vector<pair<pair<int, int>, int>> cands;
for (const auto& [x, v] : where) {
for (int i = 1; i < v.size(); ++i) {
int len = v[i] - v[i - 1] - 1;
if (len >= 1 && len >= x - 1)
cands.eb(mp(v[i - 1] + 1, v[i] - 1), x);
}
}
show(cands);
vector<int> ans(cands.size(), 0);
sort(cands.begin(), cands.end(), [&](const auto& a, const auto& b) {
return a.first.second < b.first.second;
});
{
auto x = a;
sort(x.begin(), x.end());
x.erase(unique(x.begin(), x.end()), x.end());
auto b = a;
for (int i = 0; i < n; ++i) {
b[i] = lowb(x, b[i]);
}
map<int, int> last;
int i = -1;
fenwick<int> tree(n);
for (int ind = 0; ind < cands.size(); ++ind) {
auto [l, r] = cands[ind].first;
while (i < r) {
++i;
tree.add(i, 1);
auto it = last.find(b[i]);
if (it != last.end())
tree.add(it->second, -1);
last[b[i]] = i;
}
ans[ind] += tree.ask(l, r);
}
}
{
int i = -1;
Segtree<Item> tree(n + 5);
for (int i = 0; i < n + 5; ++i) {
tree.set(i, -1);
}
for (int ind = 0; ind < cands.size(); ++ind) {
auto [l, r] = cands[ind].first;
int x = cands[ind].second;
while (i < r) {
++i;
if (a[i] <= n + 1) {
tree.set(a[i], i);
}
}
auto it = tree.ask(1, x - 1);
if (it.mn >= l) {
ans[ind] -= x;
} else {
ans[ind] -= 1e9;
}
}
}
int glob = -1e9;
for (int it = 0; it < 2; ++it) {
set<int> vals;
int mex = 1;
for (int x : a) {
vals.insert(x);
while (vals.count(mex)) ++mex;
glob = max(glob, (int)vals.size() - mex);
}
reverse(a.begin(), a.end());
}
show(ans);
show(glob);
if (!ans.empty()) {
glob = max(glob, maxe(ans));
}
cout << glob << '\n';
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(NULL);
int T;
cin >> T;
for (int test = 1; test <= T; ++test) {
test_case(test);
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3564kb
input:
2 5 4 1 2 2 3 4 5 10000 5 2 3 4 1
output:
2 3
result:
ok 2 number(s): "2 3"
Test #2:
score: 0
Accepted
time: 147ms
memory: 3796kb
input:
50000 10 19 12 6 1 12 11 15 4 1 13 18 10 8 8 7 6 7 6 2 2 3 4 8 10 6 3 2 6 6 5 2 3 4 5 6 10 11 6 3 7 9 2 1 2 10 10 4 10 6 6 1 2 6 1 1 3 4 2 1 10 9 8 5 3 9 1 7 5 5 1 1 10 5 1 4 3 2 5 4 5 3 5 2 10 14 3 8 12 10 4 2 3 13 7 3 10 14 5 5 12 2 8 1 13 9 8 5 10 7 5 5 6 6 1 5 3 7 3 4 10 7 5 1 4 6 1 6 4 3 7 5 10...
output:
6 5 4 4 2 4 3 7 4 4 4 5 2 3 6 6 7 5 7 6 5 5 6 2 6 8 7 2 5 5 6 2 2 3 4 5 3 3 7 3 2 5 6 1 3 5 3 3 3 8 6 6 5 7 4 4 5 4 6 6 6 3 7 3 6 3 3 7 7 6 6 7 4 3 3 4 4 6 3 4 6 6 4 5 5 9 4 5 7 5 3 5 2 2 5 6 6 8 4 3 4 5 5 5 7 7 3 2 6 5 3 5 4 4 5 6 6 5 6 7 7 4 5 7 4 7 3 7 6 6 6 5 4 2 5 4 2 3 6 5 2 6 5 5 4 3 5 6 6 6 ...
result:
ok 50000 numbers
Test #3:
score: 0
Accepted
time: 122ms
memory: 3624kb
input:
100000 5 4 4 3 1 3 1 5 4 2 2 1 3 4 5 9 7 8 7 1 3 5 3 3 2 2 3 1 5 7 1 4 2 4 7 5 4 4 4 4 2 3 5 3 2 1 2 2 2 5 5 2 1 2 5 4 5 9 1 8 4 4 7 5 6 2 6 4 6 2 5 5 1 2 4 4 4 5 3 2 1 1 1 3 5 5 5 4 5 2 5 5 4 3 3 3 2 1 5 3 3 1 3 2 3 5 7 1 5 2 2 7 5 6 2 2 6 5 6 5 10 6 3 3 1 7 5 8 1 6 8 4 3 5 4 1 2 1 3 3 5 7 2 2 4 3 ...
output:
1 1 2 1 2 2 0 2 2 2 1 0 2 1 1 2 2 2 3 0 3 1 2 2 3 3 1 3 0 0 3 2 2 0 2 2 1 0 2 2 3 3 3 1 3 2 2 3 2 3 2 1 2 3 1 3 3 1 2 3 1 1 2 2 2 2 0 1 0 1 0 2 1 3 0 2 2 3 2 2 1 3 1 3 1 1 1 3 1 1 4 0 1 3 2 2 2 0 3 2 4 3 3 2 1 0 4 4 3 2 1 2 1 2 3 2 3 4 4 3 0 0 1 4 1 3 3 2 3 1 3 4 3 1 2 2 3 2 3 2 3 3 1 3 1 1 4 1 1 3 ...
result:
ok 100000 numbers
Test #4:
score: 0
Accepted
time: 174ms
memory: 3844kb
input:
25000 20 28 4 28 8 7 8 23 13 27 1 3 24 19 21 7 21 6 10 3 1 8 20 18 6 13 17 2 4 11 12 5 10 8 1 3 5 18 10 2 8 15 4 17 20 17 5 9 5 15 7 11 16 2 16 17 15 11 3 12 13 12 11 17 15 14 20 28 12 17 26 1 21 18 9 12 22 3 7 24 5 8 20 3 25 28 17 20 20 13 9 10 4 9 10 13 4 3 3 9 12 8 4 12 2 2 6 10 13 5 20 22 17 13 ...
output:
12 9 11 14 9 12 9 15 6 11 8 13 14 13 7 11 8 13 11 11 14 14 7 15 10 10 10 12 9 13 12 10 10 14 14 11 9 8 9 10 10 5 11 14 13 14 13 8 8 12 10 10 17 12 7 14 9 11 14 13 8 12 15 13 14 11 9 8 11 17 9 12 11 13 13 10 14 10 10 16 12 13 12 11 14 12 9 12 5 9 15 16 13 15 7 14 12 6 12 13 7 8 12 10 13 15 9 16 7 16 ...
result:
ok 25000 numbers
Test #5:
score: 0
Accepted
time: 224ms
memory: 3648kb
input:
5000 100 100 71 48 44 27 73 73 90 42 69 81 79 99 97 3 45 78 38 92 89 27 97 7 4 91 42 59 7 45 88 100 15 66 64 6 26 54 38 38 72 81 15 94 35 63 33 85 100 16 41 5 71 20 92 36 39 59 19 59 11 22 11 26 94 29 73 98 16 16 47 25 35 50 49 6 67 85 69 90 6 87 72 24 37 62 55 54 25 38 95 14 15 26 89 26 25 46 14 24...
output:
59 78 69 48 78 53 64 73 53 66 59 57 62 42 73 69 46 68 66 47 59 64 71 57 73 43 52 66 67 61 66 66 65 58 80 65 65 69 75 76 69 39 69 61 53 72 44 62 63 71 76 56 69 79 49 73 62 71 83 59 70 53 69 73 47 68 74 59 66 74 75 61 53 76 48 62 79 71 47 72 40 80 62 42 63 70 72 70 70 59 68 56 74 54 61 78 68 75 70 39 ...
result:
ok 5000 numbers
Test #6:
score: 0
Accepted
time: 732ms
memory: 38244kb
input:
2 250000 144237 103523 38477 80037 110169 8464 110583 60349 74339 29012 8989 96955 23403 38383 12186 107503 109176 1709 31839 109579 62912 130470 26082 102718 25272 17893 55607 48053 34513 23154 136492 8313 136454 57920 60639 68601 50656 16871 101625 88777 35367 62644 80269 24346 33961 74832 62520 8...
output:
118705 195099
result:
ok 2 number(s): "118705 195099"
Test #7:
score: 0
Accepted
time: 856ms
memory: 61272kb
input:
1 500000 500000 166333 42890 491246 340568 331305 268296 201428 53022 200493 362616 82079 492836 402998 214609 161141 471977 378791 107806 182516 265636 468917 104158 490409 221339 116329 325539 49370 262861 37122 78932 236317 431273 76912 177034 393086 455348 481306 290838 435357 444359 465017 1894...
output:
315937
result:
ok 1 number(s): "315937"
Test #8:
score: 0
Accepted
time: 133ms
memory: 3632kb
input:
50000 10 359848 3 7 9 4 5 2 8 10 1 6 10 418109 5 3 9 4 8 10 6 2 1 7 10 218272 3 4 6 5 2 1 9 10 8 7 10 35311 10 8 7 3 9 2 1 6 5 4 10 82600 4 10 6 9 7 5 2 1 3 8 10 265069 10 5 3 2 9 4 1 8 7 6 10 105624 7 2 3 1 9 10 5 8 4 6 10 440218 10 5 3 6 9 4 1 8 7 2 10 444968 1 2 4 7 5 10 3 9 8 6 10 199453 7 10 1 ...
output:
7 7 6 5 6 5 6 7 8 6 7 4 7 5 7 6 8 8 6 6 7 8 5 7 6 6 5 6 7 4 6 6 6 5 7 7 8 6 7 8 8 7 5 4 6 5 5 8 8 7 7 7 6 5 7 6 7 7 5 7 7 6 8 8 5 7 5 7 7 5 7 6 8 6 6 5 8 7 7 8 7 7 5 5 8 8 7 6 8 5 5 7 8 6 5 8 4 7 5 7 6 7 5 7 7 6 8 7 7 7 8 5 6 7 7 6 8 7 7 7 6 7 6 6 5 6 7 7 7 7 6 5 6 5 8 8 6 7 7 5 7 8 5 6 4 8 7 6 7 8 ...
result:
ok 50000 numbers
Test #9:
score: 0
Accepted
time: 111ms
memory: 3616kb
input:
100000 5 5277 5 4 1 3 2 5 190469 3 1 4 5 2 5 238117 3 1 2 4 5 5 173164 4 5 1 3 2 5 21126 2 1 4 5 3 5 257869 2 4 3 1 5 5 58430 5 3 1 2 4 5 280066 4 2 3 5 1 5 406541 4 2 5 3 1 5 462388 1 2 4 3 5 5 140796 3 4 1 2 5 5 290933 4 1 5 2 3 5 69105 1 3 5 4 2 5 379211 2 5 1 4 3 5 337951 4 1 3 2 5 5 266310 4 2 ...
output:
2 2 2 2 2 2 1 3 3 3 1 2 3 2 2 2 1 3 1 3 1 2 2 3 3 1 2 3 2 3 3 3 3 2 2 3 3 2 2 3 2 3 2 3 3 3 1 3 3 2 2 1 3 2 3 2 2 2 3 3 2 2 2 3 3 3 2 2 2 2 3 2 3 2 3 2 2 3 1 2 2 3 2 2 2 2 3 2 2 2 2 3 2 3 1 2 1 3 2 3 2 3 2 3 2 2 3 2 3 2 3 2 3 2 2 2 2 3 2 2 2 3 2 3 1 2 3 3 2 2 3 2 3 3 3 3 2 3 3 3 3 1 2 2 2 2 2 1 2 3 ...
result:
ok 100000 numbers
Test #10:
score: 0
Accepted
time: 174ms
memory: 3844kb
input:
25000 20 82509 9 14 10 3 17 20 1 11 4 6 19 18 13 5 8 15 12 2 16 7 20 182141 2 1 18 12 3 19 5 10 6 9 17 13 8 16 7 14 20 15 11 4 20 442101 3 9 12 4 15 20 10 5 1 8 13 6 17 2 14 19 7 11 18 16 20 394185 18 10 19 3 5 1 14 13 9 2 12 4 16 15 8 20 17 7 6 11 20 166980 20 17 16 10 5 14 6 11 3 2 9 12 4 1 13 15 ...
output:
15 17 16 13 12 16 13 16 17 17 16 17 17 17 13 18 14 16 18 16 15 16 16 17 17 12 15 15 17 17 14 16 14 17 17 16 18 16 16 16 15 16 16 16 18 12 17 15 16 15 16 14 18 15 15 15 14 18 13 18 15 17 17 14 16 15 15 15 12 13 15 16 14 14 18 15 15 13 14 16 18 16 13 17 16 16 15 18 12 13 17 13 16 14 17 15 18 15 12 14 ...
result:
ok 25000 numbers
Test #11:
score: 0
Accepted
time: 212ms
memory: 3848kb
input:
5000 100 306161 12 73 87 36 97 31 46 98 75 48 63 53 3 80 93 22 66 92 61 84 18 54 40 64 45 95 9 13 26 59 23 30 70 51 72 7 2 78 5 10 6 82 8 56 27 24 76 16 25 41 90 81 58 94 37 17 4 55 32 89 43 42 100 62 39 49 67 14 86 99 20 38 71 60 34 50 11 74 88 15 52 44 83 77 69 28 65 79 68 29 1 91 35 57 33 21 47 8...
output:
89 95 86 86 90 90 84 90 88 91 93 90 93 92 95 90 95 97 88 92 88 93 88 91 92 90 87 95 89 90 92 89 93 96 95 95 96 93 91 95 93 88 89 91 90 88 94 93 82 90 92 94 88 95 88 85 93 94 96 94 89 96 90 91 91 88 90 90 83 90 87 95 94 92 85 92 93 91 85 92 88 90 96 97 90 83 88 92 89 97 94 97 94 93 91 89 88 93 84 92 ...
result:
ok 5000 numbers
Test #12:
score: 0
Accepted
time: 748ms
memory: 43604kb
input:
2 250000 428579 248668 155599 194637 33958 195350 111388 73108 122013 20865 138324 35552 86373 81856 197773 29494 225040 222921 2274 216341 152306 218039 235001 169433 26562 11648 164657 233867 233011 158427 165182 113806 107090 146738 221989 186397 131670 111042 204004 65140 159348 99198 190164 856...
output:
249454 249551
result:
ok 2 number(s): "249454 249551"
Test #13:
score: 0
Accepted
time: 853ms
memory: 83080kb
input:
1 500000 500000 200323 10145 176452 387759 57674 376309 106257 281569 154190 13537 419396 294390 286088 241280 367901 91976 300287 310956 58027 491859 430847 227221 181181 26524 476739 25343 83009 388661 459213 378505 113707 115770 155346 202887 405077 361306 201954 16016 485924 464238 343243 236494...
output:
499422
result:
ok 1 number(s): "499422"
Test #14:
score: 0
Accepted
time: 746ms
memory: 61372kb
input:
1 500000 500000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98...
output:
311338
result:
ok 1 number(s): "311338"
Test #15:
score: 0
Accepted
time: 703ms
memory: 60852kb
input:
1 500000 500000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98...
output:
307443
result:
ok 1 number(s): "307443"
Test #16:
score: 0
Accepted
time: 720ms
memory: 62372kb
input:
1 500000 500000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98...
output:
305836
result:
ok 1 number(s): "305836"
Test #17:
score: 0
Accepted
time: 647ms
memory: 32408kb
input:
2 250000 320206 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98...
output:
156562 156572
result:
ok 2 number(s): "156562 156572"
Test #18:
score: 0
Accepted
time: 769ms
memory: 61304kb
input:
1 500000 500000 67747 38472 76237 7972 62365 36105 34362 23274 61467 21635 95771 34387 23674 3857 37057 18336 84767 50439 2357 53189 8869 83750 55606 94094 90021 52397 5809 80476 56565 34554 47591 51217 51276 28517 64932 63703 34119 43535 72610 98274 62990 30880 6591 74894 48858 55763 93145 58585 50...
output:
311331
result:
ok 1 number(s): "311331"
Test #19:
score: 0
Accepted
time: 784ms
memory: 60864kb
input:
1 500000 500000 81659 59755 13320 52800 102048 24484 83539 89834 46433 123601 11208 22262 124587 100771 15337 62666 11374 97503 29711 6694 25755 56670 110069 34363 15409 36378 114997 19584 24543 12997 88597 124416 66687 65754 44654 119483 87649 52779 49543 50120 100035 60367 58291 40114 19754 119795...
output:
307336
result:
ok 1 number(s): "307336"
Test #20:
score: 0
Accepted
time: 654ms
memory: 33152kb
input:
2 250000 396391 2040 20276 7530 10825 39119 13529 4441 25003 7137 11769 461 23867 24728 28314 3489 30869 38066 17511 27762 13011 37908 2622 24084 10557 11075 27890 27994 14094 25043 15674 39444 31750 7595 13696 30452 32898 15738 6776 30015 2724 38901 4976 20624 30857 21208 25797 32806 2138 20757 838...
output:
156459 156522
result:
ok 2 number(s): "156459 156522"
Test #21:
score: 0
Accepted
time: 657ms
memory: 31772kb
input:
2 250000 376720 53282 11405 12510 56150 9005 557 56844 33582 26360 67667 3631 11897 56385 33187 14002 35153 41287 14848 21195 25750 63087 11686 68033 47000 47327 59250 71450 37210 47084 45107 18505 41348 64394 64307 54296 54345 2136 33719 2519 29319 19417 18478 46052 55886 18749 72653 24036 8553 674...
output:
149846 149789
result:
ok 2 number(s): "149846 149789"
Test #22:
score: 0
Accepted
time: 774ms
memory: 58708kb
input:
1 500000 500000 141664 109080 176561 114617 35758 36903 2809 99227 27868 43611 89831 8352 120764 22483 70356 167436 16831 114657 119265 15825 197069 55799 42540 156458 179906 80880 182798 110077 184446 114907 88241 160397 194428 195133 169238 161618 116316 108271 45761 103675 150012 52223 182050 886...
output:
285094
result:
ok 1 number(s): "285094"
Test #23:
score: 0
Accepted
time: 729ms
memory: 61812kb
input:
1 500000 500000 107386 4605 86424 86357 97484 108126 29646 101230 69147 83308 11412 34228 79593 45762 98923 115275 68539 111200 113989 87852 63449 54662 128372 5641 18970 101970 93394 63363 71590 94540 99644 81657 13537 123771 43403 13330 122736 7585 252 104747 84286 98562 36441 19915 52002 64695 12...
output:
306519
result:
ok 1 number(s): "306519"
Test #24:
score: 0
Accepted
time: 591ms
memory: 71428kb
input:
1 500000 500000 125000 124999 124998 124997 124996 124995 124994 124993 124992 124991 124990 124989 124988 124987 124986 124985 124984 124983 124982 124981 124980 124979 124978 124977 124976 124975 124974 124973 124972 124971 124970 124969 124968 124967 124966 124965 124964 124963 124962 124961 1249...
output:
249998
result:
ok 1 number(s): "249998"
Test #25:
score: 0
Accepted
time: 589ms
memory: 37844kb
input:
2 250000 396796 1093 32642 29809 6887 37029 46867 60496 58834 1428 10427 15429 49247 9040 33015 12170 15102 22548 22433 59213 51801 36012 22924 11589 52668 36579 15129 45097 48913 5052 32168 30675 28077 52526 27163 51270 5773 33274 36742 32550 43055 54817 45840 8949 47482 6680 3686 8081 48196 50000 ...
output:
187496 124998
result:
ok 2 number(s): "187496 124998"
Test #26:
score: 0
Accepted
time: 590ms
memory: 71500kb
input:
1 499999 500000 124999 124998 124997 124996 124995 124994 124993 124992 124991 124990 124989 124988 124987 124986 124985 124984 124983 124982 124981 124980 124979 124978 124977 124976 124975 124974 124973 124972 124971 124970 124969 124968 124967 124966 124965 124964 124963 124962 124961 124960 1249...
output:
249999
result:
ok 1 number(s): "249999"
Test #27:
score: 0
Accepted
time: 170ms
memory: 3504kb
input:
500000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
output:
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
result:
ok 500000 numbers
Test #28:
score: 0
Accepted
time: 119ms
memory: 3768kb
input:
250000 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 1 2 2 2 2 1 2 2 1 1 2 2 2...
output:
0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0...
result:
ok 250000 numbers
Test #29:
score: 0
Accepted
time: 124ms
memory: 3624kb
input:
250000 2 3 1 3 2 3 3 2 2 3 2 2 2 3 1 2 2 3 3 1 2 3 2 1 2 3 1 1 2 3 3 3 2 3 2 3 2 3 1 3 2 3 3 2 2 3 2 2 2 3 1 2 2 3 3 1 2 3 2 1 2 3 1 1 2 3 3 3 2 3 2 3 2 3 1 3 2 3 3 2 2 3 2 2 2 3 1 2 2 3 3 1 2 3 2 1 2 3 1 1 2 3 3 3 2 3 2 3 2 3 1 3 2 3 3 2 2 3 2 2 2 3 1 2 2 3 3 1 2 3 2 1 2 3 1 1 2 3 3 3 2 3 2 3 2 3 1...
output:
0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 0 1 0 1 0 0 0 0 -1 ...
result:
ok 250000 numbers
Test #30:
score: 0
Accepted
time: 100ms
memory: 3628kb
input:
166666 3 2 2 1 1 3 2 1 1 1 3 2 2 2 2 3 2 1 2 2 3 2 2 1 2 3 2 1 1 2 3 2 2 2 1 3 2 1 2 1 3 2 2 1 1 3 2 1 1 1 3 2 2 2 2 3 2 1 2 2 3 2 2 1 2 3 2 1 1 2 3 2 2 2 1 3 2 1 2 1 3 2 2 1 1 3 2 1 1 1 3 2 2 2 2 3 2 1 2 2 3 2 2 1 2 3 2 1 1 2 3 2 2 2 1 3 2 1 2 1 3 2 2 1 1 3 2 1 1 1 3 2 2 2 2 3 2 1 2 2 3 2 2 1 2 3 2...
output:
0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 ...
result:
ok 166666 numbers
Test #31:
score: 0
Accepted
time: 107ms
memory: 3628kb
input:
166666 3 3 1 2 3 3 3 3 1 3 3 3 2 1 3 3 3 1 1 3 3 3 3 3 2 3 3 2 3 2 3 3 1 3 2 3 3 3 2 2 3 3 2 2 2 3 3 1 2 2 3 3 3 1 2 3 3 2 1 2 3 3 1 1 2 3 3 3 3 1 3 3 2 3 1 3 3 1 3 1 3 3 3 2 1 3 3 2 2 1 3 3 1 2 1 3 3 3 1 1 3 3 2 1 1 3 3 1 1 1 3 3 3 3 3 3 3 2 3 3 3 3 1 3 3 3 3 3 2 3 3 3 2 2 3 3 3 1 2 3 3 3 3 1 3 3 3...
output:
1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 1 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 1 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 1 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 1 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 1 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0...
result:
ok 166666 numbers
Test #32:
score: 0
Accepted
time: 104ms
memory: 3792kb
input:
125000 4 4 4 2 1 2 4 4 3 2 1 2 4 4 2 2 1 2 4 4 1 2 1 2 4 4 4 1 1 2 4 4 3 1 1 2 4 4 2 1 1 2 4 4 1 1 1 2 4 4 4 4 4 1 4 4 3 4 4 1 4 4 2 4 4 1 4 4 1 4 4 1 4 4 4 3 4 1 4 4 3 3 4 1 4 4 2 3 4 1 4 4 1 3 4 1 4 4 4 2 4 1 4 4 3 2 4 1 4 4 2 2 4 1 4 4 1 2 4 1 4 4 4 1 4 1 4 4 3 1 4 1 4 4 2 1 4 1 4 4 1 1 4 1 4 4 4...
output:
1 1 0 0 0 0 0 0 0 1 1 0 1 1 2 1 1 2 1 1 0 1 0 0 1 1 2 1 1 0 1 0 2 1 1 1 1 0 0 0 1 2 1 1 2 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 0 0 0 0 -1 0 1 1 0 1 1 2 1 1 2 1 1 0 1 0 0 1 1 2 1 1 1 2 1 2 2 2 2 1 1 1 1 1 2 1 1 2 2 2 2 1 2 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 1 0 0 0 1 0 0 1 1 2 1 1 1 2 1 2 2 2 2 1 1...
result:
ok 125000 numbers
Test #33:
score: 0
Accepted
time: 110ms
memory: 3640kb
input:
100000 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 3 5 5 5 5 5 5 2 5 5 5 5 5 5 1 5 5 5 5 5 5 5 4 5 5 5 5 5 4 4 5 5 5 5 5 3 4 5 5 5 5 5 2 4 5 5 5 5 5 1 4 5 5 5 5 5 5 3 5 5 5 5 5 4 3 5 5 5 5 5 3 3 5 5 5 5 5 2 3 5 5 5 5 5 1 3 5 5 5 5 5 5 2 5 5 5 5 5 4 2 5 5 5 5 5 3 2 5 5 5 5 5 2 2 5 5 5 5 5 1 2 5 5 5 5 5 5 1 5 5 5...
output:
0 1 1 1 0 1 1 2 2 1 1 2 1 2 1 1 2 2 1 1 0 1 1 0 0 1 1 2 2 1 1 1 2 2 1 2 2 2 3 2 2 2 3 2 2 1 1 2 1 1 1 2 1 2 1 2 2 2 3 2 1 2 1 2 1 2 3 2 2 2 1 2 1 1 1 1 2 2 1 1 2 2 3 2 2 2 3 2 2 2 1 2 2 1 1 1 1 1 1 1 0 1 1 1 0 1 1 2 1 1 1 2 1 1 1 1 1 1 0 0 0 1 1 0 0 1 1 2 2 1 1 1 2 2 1 2 2 2 3 2 2 2 3 2 2 1 1 2 1 1 ...
result:
ok 100000 numbers
Test #34:
score: 0
Accepted
time: 110ms
memory: 3600kb
input:
83333 6 6 5 5 5 2 5 5 6 6 4 5 5 2 5 5 6 6 3 5 5 2 5 5 6 6 2 5 5 2 5 5 6 6 1 5 5 2 5 5 6 6 6 4 5 2 5 5 6 6 5 4 5 2 5 5 6 6 4 4 5 2 5 5 6 6 3 4 5 2 5 5 6 6 2 4 5 2 5 5 6 6 1 4 5 2 5 5 6 6 6 3 5 2 5 5 6 6 5 3 5 2 5 5 6 6 4 3 5 2 5 5 6 6 3 3 5 2 5 5 6 6 2 3 5 2 5 5 6 6 1 3 5 2 5 5 6 6 6 2 5 2 5 5 6 6 5 ...
output:
1 2 2 1 1 3 2 2 3 2 2 3 2 3 2 2 2 2 1 2 2 1 1 1 1 1 1 1 1 3 3 3 4 3 3 3 2 2 3 2 2 3 2 2 3 2 2 4 3 3 3 3 3 3 2 2 3 2 2 2 2 2 2 2 2 3 3 4 3 3 3 3 2 3 2 2 2 4 3 3 3 3 3 3 2 3 2 2 2 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 1 2 2 1 1 3 2 2 3 2 2 3 2 3 2 2 2 2 1 2 2 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 2 ...
result:
ok 83333 numbers
Test #35:
score: 0
Accepted
time: 105ms
memory: 3616kb
input:
71428 7 7 7 5 2 6 2 5 1 7 7 6 5 2 6 2 5 1 7 7 5 5 2 6 2 5 1 7 7 4 5 2 6 2 5 1 7 7 3 5 2 6 2 5 1 7 7 2 5 2 6 2 5 1 7 7 1 5 2 6 2 5 1 7 7 7 4 2 6 2 5 1 7 7 6 4 2 6 2 5 1 7 7 5 4 2 6 2 5 1 7 7 4 4 2 6 2 5 1 7 7 3 4 2 6 2 5 1 7 7 2 4 2 6 2 5 1 7 7 1 4 2 6 2 5 1 7 7 7 3 2 6 2 5 1 7 7 6 3 2 6 2 5 1 7 7 5 ...
output:
3 2 2 3 3 2 2 4 3 3 3 4 3 3 4 3 3 4 3 3 3 3 2 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 3 2 2 3 3 3 4 4 3 3 2 3 2 3 3 2 2 3 4 3 3 4 3 3 3 4 3 4 3 3 3 2 3 2 3 3 2 2 2 2 2 2 2 2 2 3 3 3 4 4 3 3 3 2 2 3 3 2 2 3 2 2 ...
result:
ok 71428 numbers
Test #36:
score: 0
Accepted
time: 92ms
memory: 3548kb
input:
62500 8 8 4 5 1 3 8 2 1 1 8 8 3 5 1 3 8 2 1 1 8 8 2 5 1 3 8 2 1 1 8 8 1 5 1 3 8 2 1 1 8 8 8 4 1 3 8 2 1 1 8 8 7 4 1 3 8 2 1 1 8 8 6 4 1 3 8 2 1 1 8 8 5 4 1 3 8 2 1 1 8 8 4 4 1 3 8 2 1 1 8 8 3 4 1 3 8 2 1 1 8 8 2 4 1 3 8 2 1 1 8 8 1 4 1 3 8 2 1 1 8 8 8 3 1 3 8 2 1 1 8 8 7 3 1 3 8 2 1 1 8 8 6 3 1 3 8 ...
output:
3 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 2 2 2 2 2 1 1 2 2 3 3 3 3 2 2 2 3 2 3 3 3 2 2 2 3 3 2 3 3 2 2 2 3 3 3 2 3 2 2 2 3 3 3 3 2 2 2 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 2 2 3 3 3 3 2 2 2 2 3 3 3 3 2 2 3 3 3 4 4 4 3 3 3 3 4 3 4 4 3 3 3 3 4 4 3 4 3 3 3 3 4 4 4 3 3 3 2 2 ...
result:
ok 62500 numbers
Extra Test:
score: 0
Extra Test Passed