QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#500856 | #6409. Classical Data Structure Problem | ucup-team2307 | TL | 2992ms | 127520kb | C++20 | 3.7kb | 2024-08-01 22:02:05 | 2024-08-01 22:02:06 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define int unsigned
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
using pii = pair<int, int>;
using vi = vector<int>;
#define fi first
#define se second
#define pb push_back
struct Op
{
int add;
static Op noop()
{
return {0};
}
void apply(Op upd)
{
add+=upd.add;
}
};
struct Val
{
int sum;
static Val range(int lo,int hi)
{
return {0};
}
static Val empty()
{
return {0};
}
static Val combine(Val l,Val r)
{
return {l.sum+r.sum};
}
void apply(Op upd,int lo,int hi)
{
sum+=(hi-lo)*upd.add;
}
};
struct Node {
Node* l=0,*r=0;
int lo, hi; Val val; Op op = Op::noop();
Node(int lo, int hi) // implicit segment tree
: lo(lo), hi(hi), val(Val::range(lo, hi)) {}
Val query(int L, int R) {
if (R <= lo || hi <= L) return Val::empty();
if (L <= lo && hi <= R) return val;
push();
return Val::combine(l->query(L, R), r->query(L, R));
}
void update(int L, int R, Op upd) {
if (R <= lo || hi <= L) return;
if (L <= lo && hi <= R) val.apply(upd,lo,hi), op.apply(upd);
else {
push(), l->update(L, R, upd), r->update(L, R, upd);
val = Val::combine(l->val, r->val);
}
}
void push() {
if (!l) { // only for implicit segment tree
int mid = lo + (hi - lo) / 2;
l = new Node(lo, mid); r = new Node(mid, hi);
}
l->update(lo, hi, op); r->update(lo, hi, op);
op = Op::noop();
}
~Node()
{
delete l;
delete r;
}
};
const int M=30,LEN=1<<M,MASK=LEN-1;
int n0 = 1;
vector<tuple<signed,unsigned,unsigned > > upd = { {-1,0, 0} };
void quer(int l, int r, int x)
{
// cout<<"quer "<<l<<" "<<r<<" "<<x<<"\n";
upd.pb({r+1, 0-x, 0});
upd.pb({l, x, 0});
}
void process()
{
for (signed i=n0-2; i>=0; i--)
get<1>(upd[i+1]) -= get<1>(upd[i]);
// cout<<"process"<<"\n";
n0 = upd.size();
sort(upd.begin(), upd.end());
for (int i=0; i+1<n0; i++)
get<1>(upd[i+1]) += get<1>(upd[i]);
for (int i=1; i<n0; i++)
{
get<2>(upd[i]) = get<1>(upd[i-1]) * (get<0>(upd[i]) - get<0>(upd[i-1]));
}
for (int i=1; i<n0; i++)
get<2>(upd[i]) += get<2>(upd[i-1]);
// for(auto[x,y,z]:upd)
// cout<<"("<<x<<","<<y<<","<<z<<") ";
// cout<<"\n";
}
int ask(int r)
{
auto it = lower_bound(upd.begin(), upd.begin() + n0, tuple<signed,unsigned,unsigned>{r+1, 0, 0});
it = prev(it);
int i = it-upd.begin();
// cout<<"ask "<<r<<" -> "<<get<2>(upd[i]) + get<1>(upd[i]) * (r - get<0>(upd[i]))<<"\n";
return get<2>(upd[i]) + get<1>(upd[i]) * (r - get<0>(upd[i]) + 1);
}
const int BLOCK=5e4;
signed main() {
cin.tie(0)->sync_with_stdio(0);
cin.exceptions(cin.failbit);
int n=5e5,m=30;
cin>>n>>m;
int len=1<<m,mask=len-1;
auto*tree=new Node(0,len);
int x=0;
mt19937 rng;
upd.reserve(2*n+10);
for(int i=1;i<=n;i++)
{
if(i%BLOCK==0) {
process();
delete tree;
tree=new Node(0,len);
}
int l=rng(),r=rng();
cin>>l>>r;
l+=x,r+=x;
l&=mask,r&=mask;
if(l>r) swap(l,r);
tree->update(l,r+1,{i});
quer(l,r,i);
x+=tree->query(l,r+1).sum+ask(r)-(l?ask(l-1):0);
}
// vector<pii> segs;
// tree->dfs(segs);
cout<<(x&MASK);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3864kb
input:
5 2 2 1 1 3 3 2 1 0 0 2
output:
87
result:
ok 1 number(s): "87"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3844kb
input:
1 1 1 1
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
1 2 3 1
output:
3
result:
ok 1 number(s): "3"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
1 5 31 15
output:
17
result:
ok 1 number(s): "17"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
1 20 366738 218765
output:
147974
result:
ok 1 number(s): "147974"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
1 30 86669484 41969116
output:
44700369
result:
ok 1 number(s): "44700369"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
10 5 20 31 2 2 14 18 13 25 26 4 22 9 15 9 19 16 15 27 9 20
output:
1414
result:
ok 1 number(s): "1414"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
100 10 245 987 817 813 743 560 548 504 116 479 223 199 775 998 126 542 791 823 96 318 69 349 0 584 245 601 119 513 93 820 115 307 838 978 249 767 433 287 240 8 22 683 169 720 395 592 903 866 919 652 510 563 858 345 938 250 550 239 981 7 784 926 212 644 272 365 490 871 470 987 571 53 65 593 515 370 1...
output:
20383734
result:
ok 1 number(s): "20383734"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
1000 1 0 1 1 0 1 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 0 1 1 1 0 1 0 1 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 0 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 0 0 1 1 1 0 1 0 0 1 1 1 1 0 1 0 0 0 1 0 1 1 1 1 0 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 1 0 1 1 1 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 1 1 1 1 1...
output:
190098735
result:
ok 1 number(s): "190098735"
Test #10:
score: 0
Accepted
time: 1ms
memory: 3592kb
input:
1000 5 8 18 31 28 19 3 15 28 5 22 19 1 26 27 17 17 5 26 6 27 10 6 5 2 3 19 6 6 28 16 17 16 0 21 7 31 13 25 13 10 28 30 0 13 21 5 2 9 25 28 4 18 31 13 1 26 30 3 5 8 19 16 22 10 15 17 3 25 6 27 18 26 27 1 26 29 18 21 14 20 5 1 26 9 7 13 19 25 15 11 24 17 12 28 24 17 4 27 20 27 31 18 25 17 1 28 5 0 16 ...
output:
794181769
result:
ok 1 number(s): "794181769"
Test #11:
score: 0
Accepted
time: 1ms
memory: 3936kb
input:
1000 10 732 399 190 578 491 867 330 55 113 400 34 734 790 927 201 156 107 359 790 398 401 523 634 505 570 305 281 513 551 35 610 33 231 330 833 756 213 444 412 315 139 165 533 21 35 977 319 884 894 72 149 667 16 538 282 860 850 550 100 99 801 138 159 34 468 852 840 853 368 994 469 906 393 298 464 89...
output:
755182648
result:
ok 1 number(s): "755182648"
Test #12:
score: 0
Accepted
time: 6ms
memory: 5268kb
input:
5000 15 7705 10737 21186 31441 10307 825 19372 1969 32358 6343 22487 31897 12802 25210 17920 4297 5726 8409 28174 12489 16532 12646 9916 14917 19592 26927 23987 9279 26951 31081 3673 10505 20727 10730 28961 26581 11005 29624 13931 32180 29764 19108 23553 28977 30178 6537 25586 3041 15333 31927 4671 ...
output:
374742544
result:
ok 1 number(s): "374742544"
Test #13:
score: 0
Accepted
time: 11ms
memory: 12840kb
input:
10000 20 914013 637387 162942 785196 55799 893293 359726 714014 109456 559963 689320 161360 164737 25370 260018 436870 801394 34900 564741 620583 1008448 956143 788249 695007 633673 1020122 431990 397822 253241 746513 322933 927863 843120 378180 343689 583409 788822 249760 839003 753443 910418 20908...
output:
719391110
result:
ok 1 number(s): "719391110"
Test #14:
score: 0
Accepted
time: 601ms
memory: 122792kb
input:
100000 30 1063412225 224331901 116583527 514118426 121269548 678461017 856756753 250958443 1064104926 412721149 829078609 544244155 734000135 742933979 9127283 962205064 595091107 123655320 593251579 687018764 1052215261 661849950 297391487 243419322 105274358 526149321 1069300711 46673358 208918023...
output:
252791218
result:
ok 1 number(s): "252791218"
Test #15:
score: 0
Accepted
time: 1724ms
memory: 125156kb
input:
200000 30 340892656 331749003 569148929 1001014926 169562315 65082998 783728999 371358574 1068579249 78668714 697845492 972638257 499257742 966955403 924540097 249425391 76210210 270676008 1055790206 117898225 186726707 639941146 774774929 469533012 608214477 15295274 30556605 466457599 892407954 78...
output:
220823398
result:
ok 1 number(s): "220823398"
Test #16:
score: 0
Accepted
time: 2992ms
memory: 127520kb
input:
300000 30 692114910 439166105 1021714331 414169601 217855081 525446803 710701245 491758705 1073053571 818358104 566612376 327290534 264515348 117235003 766211086 610387541 631071137 417696697 444587009 622519510 394979978 618032341 178416548 695646703 37412772 578183052 65554323 886241839 502156061 ...
output:
501248752
result:
ok 1 number(s): "501248752"
Test #17:
score: -100
Time Limit Exceeded
input:
400000 30 1043337164 546583208 400537910 901066101 266147848 985810608 637673490 612158836 3786069 484305669 435379259 755684636 29772955 341256427 607882075 971349692 112190239 564717385 907125636 53398971 603233248 596123536 655799990 921760394 540352891 67329005 100552041 232284256 111904168 9990...