# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
625321 | minhi1 | Zoltan (COCI16_zoltan) | C++14 | 233 ms | 16476 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>
#define ll long long
#define pb push_back
#define forn(i, a, b) for (int i = (a); i <= (b); ++i)
#define forb(i, b, a) for (int i = (b); i >= (a); --i)
#define rep(i, a, b) for (int i = (a); i < (b); ++i)
using namespace std;
template<class X, class Y> bool ckmax(X &x, Y y) {
if (x < y) {
x = y;
return true;
}
return false;
}
template<class X, class Y> bool ckmin(X &x, Y y) {
if (x > y) {
x = y;
return true;
}
return false;
}
const int inf = (int)1e9 + 25;
const ll linf = 1e18;
const int N = 2e5 + 25;
/////////////////////////////////////////////////////
const int MOD = (int)1e9 + 7;
struct segmentTree {
int n;
vector<pair<int, int>> mx;
segmentTree(int _n = 0) {
n = _n;
mx.assign(4 * n + 6, {0, 0});
}
pair<int, int> comb(pair<int, int> x, pair<int, int> y) {
if (x.first > y.first) return x;
if (x.first < y.first) return y;
return {x.first, (x.second + y.second) % MOD};
}
void upd(int i, int l, int r, int p, pair<int, int> v) {
if (l > r) return;
if (l == r) {
mx[i] = comb(mx[i], v);
return;
}
int mid = (l + r) >> 1;
if (p <= mid) upd(i << 1, l, mid, p, v);
else upd(i << 1 | 1, mid + 1, r, p, v);
mx[i] = comb(mx[i << 1], mx[i << 1 | 1]);
}
void upd(int p, pair<int, int> v) {
upd(1, 1, n, p, v);
}
pair<int, int> get(int i, int l, int r, int u, int v) {
if (l > v || r < u || l > r || r < u) return {0, 0};
if (l >= u && r <= v) return mx[i];
int mid = (l + r) >> 1;
return comb(get(i << 1, l, mid, u, v), get(i << 1 | 1, mid + 1, r, u, v));
}
pair<int, int> get(int u, int v) {
return get(1, 1, n, u, v);
}
};
int n, a[N];
vector<int> values;
void compress() {
sort(values.begin(), values.end());
values.resize(unique(values.begin(), values.end()) - values.begin());
forn(i, 1, n) a[i] = lower_bound(values.begin(), values.end(), a[i]) - values.begin() + 1;
}
void sol() {
cin >> n;
forn(i, 1, n) cin >> a[i], values.pb(a[i]);
compress();
int m = values.size();
segmentTree inc(m), dec(m);
int res = 0, numInc, cntInc, numDec, cntDec;
ll tot = 0;
forb(i, n, 1) {
tie(numInc, cntInc) = inc.get(a[i] + 1, m);
if (++numInc == 1) cntInc = 1;
tie(numDec, cntDec) = dec.get(1, a[i] - 1);
if (++numDec == 1) cntDec = 1;
inc.upd(a[i], {numInc, cntInc}); dec.upd(a[i], {numDec, cntDec});
if (ckmax(res, numInc + numDec - 1)) {
tot = 1LL * cntInc * cntDec % MOD;
}
else if (numInc + numDec - 1 == res) {
tot = (tot + 1LL * cntInc * cntDec % MOD) % MOD;
}
}
forn(i, 1, n - res) tot = tot * 2LL % MOD;
cout << res << " " << tot;
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0);
#ifdef DHT
freopen("voi.inp", "r", stdin);
#else
//freopen("triprime.inp", "r", stdin); freopen("triprime.out", "w", stdout);
#endif
int tt = 1;
// cin >> tt;
forn(i, 1, tt) sol();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |