# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
958855 |
2024-04-07T01:37:13 Z |
gaga999 |
Fish 2 (JOI22_fish2) |
C++17 |
|
143 ms |
108984 KB |
// #pragma GCC optimize("Ofast,no-stack-protector")
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx,avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
#define lowbit(x) ((x) & -(x))
#define ml(a, b) ((1ll * (a) * (b)) % M)
#define tml(a, b) (a) = ((1ll * (a) * (b)) % M)
#define ad(a, b) ((0ll + (a) + (b)) % M)
#define tad(a, b) (a) = ((0ll + (a) + (b)) % M)
#define mi(a, b) ((0ll + M + (a) - (b)) % M)
#define tmi(a, b) (a) = ((0ll + M + (a) - (b)) % M)
#define tmin(a, b) (a) = min((a), (b))
#define tmax(a, b) (a) = max((a), (b))
#define iter(a) (a).begin(), (a).end()
#define riter(a) (a).rbegin(), (a).rend()
#define init(a, b) memset((a), (b), sizeof(a))
#define cpy(a, b) memcpy((a), (b), sizeof(a))
#define uni(a) a.resize(unique(iter(a)) - a.begin())
#define size(x) (int)x.size()
#define pb emplace_back
#define mpr make_pair
#define ls(i) ((i) << 1)
#define rs(i) ((i) << 1 | 1)
#define INF 0x3f3f3f3f
#define NIF 0xc0c0c0c0
#define eps 1e-9
#define F first
#define S second
#define AC cin.tie(0)->sync_with_stdio(0)
using namespace std;
typedef long long llt;
typedef __int128_t lll;
typedef pair<int, int> pii;
typedef pair<double, double> pdd;
typedef pair<llt, llt> pll;
typedef complex<double> cd;
// const int M = 998244353;
// random_device rm;
// mt19937 rg(rm());
// default_random_engine rg(rm());
// uniform_int_distribution<int> rd(INT_MIN, INT_MAX);
// uniform_real_distribution<double> rd(0, M_PI);
void db() { cerr << "\n"; }
template <class T, class... U>
void db(T a, U... b) { cerr << a << " ", db(b...); }
inline char gc()
{
const static int SZ = 1 << 16;
static char buf[SZ], *p1, *p2;
if (p1 == p2 && (p2 = buf + fread(p1 = buf, 1, SZ, stdin), p1 == p2))
return -1;
return *p1++;
}
void rd() {}
template <typename T, typename... U>
void rd(T &x, U &...y)
{
x = 0;
bool f = 0;
char c = gc();
while (!isdigit(c))
f ^= !(c ^ 45), c = gc();
while (isdigit(c))
x = (x << 1) + (x << 3) + (c ^ 48), c = gc();
f && (x = -x), rd(y...);
}
template <typename T>
void prt(T x)
{
if (x < 0)
putchar('-'), x = -x;
if (x > 9)
prt(x / 10);
putchar((x % 10) ^ 48);
}
const llt MX = 1ll << 60;
const int N = 1e5 + 5;
struct P
{
llt sum;
int ans;
vector<llt> lsm, rsm, lnd, rnd;
vector<int> lnb, rnb;
inline void ini(int v)
{
sum = v, ans = 1;
lsm = rsm = vector<llt>(1, 0);
lnd = rnd = vector<llt>(1, v);
lnb = rnb = vector<int>(1, 0);
}
} tr[N << 2];
P operator+(P &l, P &r)
{
P p;
int slr = size(l.rnd), srl = size(r.lnd);
p.sum = l.sum + r.sum, p.ans = 0;
p.lsm = l.lsm, p.rsm = r.rsm;
p.lnd = l.lnd, p.rnd = r.rnd;
p.lnb = l.lnb, p.rnb = r.rnb;
for (int i = 0; i < srl; i++)
if (r.lnd[i] > l.sum)
p.lnd.pb(r.lnd[i] - l.sum), p.lsm.pb(r.lsm[i] + l.sum);
p.lnb.resize(size(p.lnd), 0);
if (size(p.lnd) > size(l.lnd))
p.lnb[size(l.lnd)] = l.ans;
else
p.ans += l.ans;
for (int i = 0; i < slr; i++)
if (l.rnd[i] > r.sum)
p.rnd.pb(l.rnd[i] - r.sum), p.rsm.pb(l.rsm[i] + r.sum);
p.rnb.resize(size(p.rnd), 0);
if (size(p.rnd) > size(r.rnd))
p.rnb[size(r.rnd)] = r.ans;
else
p.ans += r.ans;
l.rnb.pb(0), l.rnd.pb(MX), l.rsm.pb(l.sum);
r.lnb.pb(0), r.lnd.pb(MX), r.lsm.pb(r.sum);
llt vl = 0;
int num = 0;
for (int i = 1, j = 0, p1 = 0; i <= slr; i++)
{
num += l.rnb[i];
// db(i, l.rnb[i], "qsdihqiwd");
while (l.rsm[i] >= r.lnd[j])
vl = r.lsm[++j];
if (vl < l.rnd[i])
{
if (j == srl)
{
if (i == slr)
p.ans += num;
else
{
while (p.rsm[p1] < l.rsm[i] + r.sum)
p1++;
p.rnb[p1] += num;
}
}
else if (i == slr)
p.lnb[lower_bound(iter(p.lsm), r.lsm[j]) - p.lsm.begin()] += num;
num = 0;
}
}
vl = num = 0;
for (int i = 1, j = 0, p2 = 0; i <= srl; i++)
{
num += r.lnb[i];
while (r.lsm[i] >= l.rnd[j])
vl = l.rsm[++j];
if (vl < r.lnd[i])
{
if (j == slr)
{
if (i == srl)
p.ans += num;
else
{
while (p.lsm[p2] < r.lsm[i] + l.sum)
p2++;
p.lnb[p2] += num;
}
}
else if (i == srl)
p.rnb[lower_bound(iter(p.rsm), l.rsm[j]) - p.rsm.begin()] += num;
num = 0;
}
}
l.rnb.pop_back(), l.rnd.pop_back(), l.rsm.pop_back();
r.lnb.pop_back(), r.lnd.pop_back(), r.lsm.pop_back();
return p;
}
inline void pul(int id)
{
tr[id] = tr[ls(id)] + tr[rs(id)];
}
#define LL l, m, ls(id)
#define RR m + 1, r, rs(id)
void blt(int l, int r, int id)
{
if (l == r)
{
int x;
rd(x), tr[id].ini(x);
return;
}
int m = (l + r) >> 1;
blt(LL), blt(RR);
pul(id);
}
void cg(int l, int r, int id, int p, int v)
{
if (l == r)
{
tr[id].ini(v);
return;
}
int m = (l + r) >> 1;
if (p <= m)
cg(LL, p, v);
else
cg(RR, p, v);
pul(id);
}
P qy(int l, int r, int id, int ql, int qr)
{
if (ql <= l && r <= qr)
return tr[id];
int m = (l + r) >> 1;
if (ql <= m && qr > m)
{
P p1 = qy(LL, ql, qr), p2 = qy(RR, ql, qr);
return p1 + p2;
}
if (ql <= m)
return qy(LL, ql, qr);
return qy(RR, ql, qr);
}
signed main()
{
int n, q, x, a, b;
rd(n);
blt(1, n, 1);
rd(q);
while (q--)
{
rd(x, a, b);
if (x == 1)
cg(1, n, 1, a, b);
else
prt(qy(1, n, 1, a, b).ans), putchar('\n');
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
62804 KB |
Output is correct |
2 |
Correct |
14 ms |
63068 KB |
Output is correct |
3 |
Correct |
15 ms |
63072 KB |
Output is correct |
4 |
Correct |
13 ms |
63068 KB |
Output is correct |
5 |
Incorrect |
15 ms |
63324 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
14 ms |
63068 KB |
Output is correct |
2 |
Correct |
138 ms |
108984 KB |
Output is correct |
3 |
Incorrect |
143 ms |
107172 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
62804 KB |
Output is correct |
2 |
Correct |
14 ms |
63068 KB |
Output is correct |
3 |
Correct |
15 ms |
63072 KB |
Output is correct |
4 |
Correct |
13 ms |
63068 KB |
Output is correct |
5 |
Incorrect |
15 ms |
63324 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
14 ms |
63068 KB |
Output is correct |
2 |
Correct |
138 ms |
108984 KB |
Output is correct |
3 |
Incorrect |
143 ms |
107172 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
14 ms |
63068 KB |
Output is correct |
2 |
Correct |
138 ms |
108984 KB |
Output is correct |
3 |
Incorrect |
143 ms |
107172 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
34 ms |
62804 KB |
Output is correct |
2 |
Correct |
14 ms |
63068 KB |
Output is correct |
3 |
Correct |
15 ms |
63072 KB |
Output is correct |
4 |
Correct |
13 ms |
63068 KB |
Output is correct |
5 |
Incorrect |
15 ms |
63324 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |