#include "meetings.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll linf = ll(1e18);
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int, int> p2;
#define rep(i, high) for (int i = 0; i < high; i++)
#define repp(i, low, high) for (int i = low; i < high; i++)
#define repe(i, container) for (auto& i : container)
#define sz(container) ((int)container.size())
#define all(x) begin(x),end(x)
#if _LOCAL
#define assert(x) if (!(x)) __debugbreak()
#endif
typedef vector<ll> vll;
struct info
{
ll l=0, r=0, m=0, w=1;
};
info merge(info a, info b)
{
info ret;
ret.l = a.l;
if (a.l == a.w) ret.l += b.l;
ret.r = b.r;
if (b.r == b.w) ret.r += a.r;
ret.m = max(a.m, b.m);
ret.m = max(ret.m, ret.l);
ret.m = max(ret.m, ret.r);
ret.w = a.w + b.w;
return ret;
}
struct Tree
{
vector<info> tree;
Tree(vll nums) : tree(sz(nums) * 4)
{
build(1, 0, sz(nums) - 1, nums);
}
void build(int x, int l, int r, vll& nums)
{
if (l==r)
{
tree[x] = info();
if (nums[l] == 1) tree[x].l = tree[x].r = tree[x].m = 1;
}
else
{
int mid = (l + r) / 2;
build(x * 2, l, mid, nums);
build(x * 2 + 1, mid + 1, r, nums);
tree[x] = merge(tree[x * 2], tree[x * 2 + 1]);
}
}
info query(int x, int l, int r, int ql, int qr)
{
if (l > qr || r < ql) return info();
if (l >= ql && r <= qr) return tree[x];
int mid = (l + r) / 2;
return merge(query(x * 2, l, mid, ql, qr), query(x * 2 + 1, mid + 1, r, ql, qr));
}
};
vll minimum_costs(vi H, std::vector<int> L, std::vector<int> R)
{
vll h(H.begin(), H.end());
Tree tree(h);
int n = sz(h);
int q = sz(L);
vll ret(q);
rep(qu, q)
{
int l = L[qu];
int r = R[qu];
ret[qu] = 2*(r-l+1)-tree.query(1,0,n-1,l,r).m;
}
return ret;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
26 ms |
2796 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
26 ms |
2796 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |