QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#644641#8286. StacksOIer_kzc#RE 572ms668276kbC++203.8kb2024-10-16 14:54:462024-10-16 14:54:47

Judging History

你现在查看的是最新测评结果

  • [2024-10-16 14:54:47]
  • 评测
  • 测评结果:RE
  • 用时:572ms
  • 内存:668276kb
  • [2024-10-16 14:54:46]
  • 提交

answer

#include <stdio.h>
#include <string.h>

#include <random>
#include <chrono>
#include <algorithm>

#define LOG(FMT...) fprintf(stderr, FMT)

using namespace std;

typedef long long LL;
constexpr int N = 400005, TC = 20000005;

char gc() {
	static char buf[1 << 21], *p1 = buf, *p2 = buf;
	return (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 21, stdin), p1 == p2) ? -1 : *p1++);
}
LL read() {
	LL x = 0; char c = gc();
	while (c < 48 || c > 57) c = gc();
	for (; c > 47 && c < 58; c = gc()) x = x * 10 + (c ^ 48);
	return x;
}

mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());

int n;

#define L (tr[z].l)
#define R (tr[z].r)

struct Tree {
	int l, r, h, v, c;
	LL s, sz;
} tr[TC];
int ids;

void upd(int z) {
	tr[z].sz = tr[L].sz + tr[R].sz + tr[z].c;
	tr[z].s = tr[L].s + tr[R].s + tr[z].v * (LL)tr[z].c;
}

int gd(int c, int v) {
	int z = ++ids;
	tr[z].h = (int)rnd();
	tr[z].v = v, tr[z].c = tr[z].sz = c;
	tr[z].s = v * (LL)c;
	return z;
}

int merge(int x, int y) {
	if (!x || !y) {
		return x | y;
	}
	int z = ++ids;
	if (tr[x].h < tr[y].h) {
		tr[z] = tr[x];
		tr[z].r = merge(tr[z].r, y);
		upd(z);
		return z;
	}
	tr[z] = tr[y];
	tr[z].l = merge(x, tr[z].l);
	upd(z);
	return z;
}

void splitC(int z, LL c, int &x, int &y) {
	if (!z) {
		x = y = 0;
		return;
	}
	if (tr[L].sz >= c) {
		y = ++ids, tr[y] = tr[z];
		splitC(tr[z].l, c, x, tr[y].l);
		upd(y);
	} else if (tr[L].sz + tr[z].c <= c) {
		x = ++ids, tr[x] = tr[z];
		splitC(tr[z].r, c - tr[L].sz - tr[z].c, tr[x].r, y);
		upd(x);
	} else {
		x = gd(c - tr[L].sz, tr[z].v);
		tr[x].l = tr[z].l;
		upd(x);
		y = gd(tr[z].c + tr[L].sz - c, tr[z].v);
		tr[y].r = tr[z].r;
		upd(y);
	}
}

LL qry(int z, LL ql, LL qr) {
	if (qr < 1 || ql > tr[z].sz) {
		return 0ll;
	}
	if (ql <= 1 && qr >= tr[z].sz) {
		return tr[z].s;
	}
	LL ret = 0;
	if (ql <= tr[L].sz + tr[z].c && tr[L].sz < qr) {
		ret += (min(qr, tr[L].sz + tr[z].c) - max(ql - 1, tr[L].sz)) * tr[z].v;
	}
	return qry(L, ql, qr) + ret + qry(R, ql - tr[L].sz - tr[z].c, qr - tr[L].sz - tr[z].c);
}

#undef L
#undef R

#define L (z << 1)
#define R (z << 1 | 1)

int rt[4 * N];
LL rem[4 * N];

void tagA(int z, int t) {
	rt[z] = merge(rt[z], t);
}

void tagRem(int z, LL c) {
	int &r = rt[z], ers;
	if (c <= tr[r].sz) {
		splitC(r, tr[r].sz - c, r, ers);
	} else {
		rem[z] += c - tr[r].sz;
		r = 0;
	}
}

void Down(int z) {
	LL &s = rem[z];
	if (s) {
		tagRem(L, s), tagRem(R, s);
		s = 0;
	}
	int &r = rt[z];
	if (r) {
		tagA(L, r), tagA(R, r);
		r = 0;
	}
}

void Exy(int ql, int qr, int t, int l = 1, int r = n, int z = 1) {
	if (l >= ql && r <= qr) {
		tagA(z, t);
	} else {
		int mid = l + r >> 1;
		Down(z);
		if (ql <= mid) {
			Exy(ql, qr, t, l, mid, L);
		}
		if (mid < qr) {
			Exy(ql, qr, t, mid + 1, r, R);
		}
	}
}

void Ers(int ql, int qr, LL cnt, int l = 1, int r = n, int z = 1) {
	if (l >= ql && r <= qr) {
		tagRem(z, cnt);
	} else {
		int mid = l + r >> 1;
		Down(z);
		if (ql <= mid) {
			Ers(ql, qr, cnt, l, mid, L);
		}
		if (mid < qr) {
			Ers(ql, qr, cnt, mid + 1, r, R);
		}
	}
}

LL Query(int x, LL xl, LL xr, int l = 1, int r = n, int z = 1) {
	if (l == r) {
		return qry(rt[z], xl, xr);
	}
	int mid = l + r >> 1;
	Down(z);
	if (x <= mid) {
		return Query(x, xl, xr, l, mid, L);
	}
	return Query(x, xl, xr, mid + 1, r, R);
}

int main() {
	// LOG("%.3lf\n", (sizeof tr + sizeof rt * 3) / 1048576.0);
	int m;
	n = read(), m = read();
	int t; LL x, y, z, w;
	while (m--) {
		t = read(), x = read(), y = read(), z = read();
		if (t == 1) {
			w = read();
			Exy(x, y, gd(z, w));
		} else if (t == 2) {
			Ers(x, y, z);
		} else {
			printf("%lld\n", Query(x, y, z));
		}
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 5ms
memory: 9576kb

input:

4907 4910
2 763 3330 1
3 307 1 1
1 2262 3430 22699 89397
1 1915 4000 51541 67587
2 212 2990 9763
2 1086 2162 1
2 1813 4496 16760
1 51 2796 68005 99390
1 1267 1519 74236 66178
3 1768 23808 54314
2 900 4122 27758
3 3287 17350 28989
2 3277 4024 3633
2 444 4866 1
2 353 4219 1061
1 987 3141 99906 17320
2...

output:

0
3032090730
903396180
471569175
200648623
98486697
647114751
123945
50793012
61782451
0
0
0
762429740
321140700
871619914
536311874
5361094892
0
1792521566
6640518748
2415375780
249435711
225987900
5250788038
1145132507
140071334
0
118545795
3086405469
5646099271
84280112
1232466642
4992966775
7968...

result:

ok 1622 numbers

Test #2:

score: 0
Accepted
time: 0ms
memory: 11216kb

input:

4992 4958
2 2965 3892 1
3 2141 1 1
3 4963 1 1
3 2298 1 1
3 2236 1 1
1 3393 4668 65533 8224
1 884 2343 86158 41289
3 4617 12174 63763
2 898 4236 44143
2 2860 4246 1
2 2696 3014 1
2 496 1635 15779
3 2230 8262 39805
2 3287 3627 5350
2 3443 4900 19874
1 535 1622 26926 88406
1 3272 3747 94290 19081
2 812...

output:

0
0
0
0
424276160
1302420216
0
393525459
0
188112684
0
38587680
696225296
717180100
2193537294
297696966
0
0
0
124461621
26876032
1609925499
0
3681040200
51602516
1502016
0
8636592
1138256753
196684293
0
16126264
959145423
58640451
1945754097
2949696960
0
3577791360
2029416288
2361290004
5882833609
...

result:

ok 1597 numbers

Test #3:

score: 0
Accepted
time: 4ms
memory: 17104kb

input:

4980 4984
1 183 4891 75896 45281
2 767 3528 1367
3 2313 45535 49112
2 529 4006 1568
2 2114 2971 3819
3 3237 30655 31381
1 2074 2176 51631 35339
3 1602 95 16082
2 1340 3727 9249
2 105 1907 11928
3 2461 15189 33999
2 1450 1956 4721
1 700 4760 3043 92859
2 329 2992 6515
3 1295 10832 40486
2 3477 4447 8...

output:

162015418
32919287
723952628
851780891
1342808055
38307726
4701651115
903944603
240532672
652952020
1168430924
2253203546
3542990917
5872603595
305017015
657095398
25321688
1834305604
0
256832266
2732654054
1757936801
1158797383
656866283
3470700279
694675745
1042863834
76284096
6705704850
475899629...

result:

ok 1645 numbers

Test #4:

score: 0
Accepted
time: 3ms
memory: 14992kb

input:

4976 4948
2 858 1218 1
1 780 1528 70910 12344
1 681 4398 25997 59182
1 4564 4692 72420 96925
1 1124 2604 98159 98651
3 4734 1 1
2 1921 3430 3373
1 3805 3909 56118 23383
2 1471 2065 23679
2 1052 1154 30740
1 1098 2180 13716 29728
1 1094 3585 2073 93894
1 2024 4201 39023 1713
3 1571 21453 96893
3 1297...

output:

0
7262943486
185110624
53327400
957813600
383014415
1539405803
896522316
1454164560
7158196459
479198625
1943839360
1189657450
23355822139
2684778350
183742084
6400082784
2310401225
2082631008
5644811789
1875949890
3185562597
7185156304
3147144197
1588457333
676240200
1122598010
8758314557
100699296...

result:

ok 1663 numbers

Test #5:

score: 0
Accepted
time: 3ms
memory: 20936kb

input:

4944 4934
1 468 4845 87517 63656
3 4756 22899 79177
1 761 1054 45331 86403
1 24 2806 46189 11490
1 2602 4446 12528 14317
3 2601 51537 65051
1 1502 3573 79699 84830
3 1998 35405 151264
1 2400 4041 95071 83748
1 2050 3772 23643 53614
3 2261 51072 236192
2 1317 1908 6197
2 949 2543 30190
1 1457 4573 33...

output:

3582496024
860310840
5337461878
10833286574
1397502876
3735482073
4207877274
17671620
10854427218
1484917319
5462491276
1497165465
1453546510
1672688712
1158344316
1014734250
3797802047
15668090927
14634073116
32337553147
2159971110
12088416736
90924880
1410366456
13829776128
12126485158
18393654569...

result:

ok 829 numbers

Test #6:

score: 0
Accepted
time: 529ms
memory: 661344kb

input:

99999 99998
1 5026 18575 27178 90423
3 30623 1 1
3 76936 1 1
1 77021 95683 84664 24734
1 46085 74886 40512 11266
3 5048 8594 22468
1 53318 77721 97151 70784
1 70645 91192 37556 13013
1 56752 56940 91812 62887
1 7928 34576 87339 69404
3 74875 32807 100970
3 22338 17221 25771
3 21421 20602 57957
3 717...

output:

0
0
1254619125
4366274868
593473604
2592655824
3657975552
5652513833
110091352
1226646296
1989326852
763582808
8205318671
1659086055
3012598941
20085582585
3242801176
17381308704
24555397019
4722824224
20308857160
899316516
38935050954
988382364
13341823621
11397759491
2449683584
5875277101
80572355...

result:

ok 49797 numbers

Test #7:

score: 0
Accepted
time: 572ms
memory: 668276kb

input:

100000 99994
3 92225 1 1
3 10037 1 1
3 74283 1 1
3 2266 1 1
3 50962 1 1
3 81075 1 1
1 503 97219 60712 28632
1 20530 96581 71439 60132
3 41317 2559 104920
1 38204 95641 16185 4127
1 81150 90487 12130 78009
3 26946 49794 94793
3 30822 94956 120229
3 3139 25745 34556
1 31304 71829 59249 1581
1 34152 81...

output:

0
0
0
0
0
0
4323380784
2361991500
1519776168
252305184
5480718598
475075230
355440252
50964960
470925609
563617236
5250822628
167047570
5642890643
263790112
16650744580
9469618067
1523342134
5252794500
3397151474
44843260
15925043590
7615102649
642874296
805218390
12371730590
946262746
19013805530
1...

result:

ok 49918 numbers

Test #8:

score: -100
Runtime Error

input:

99992 100000
1 47419 74011 81562 83218
1 24365 27999 38558 68071
1 28685 99034 50336 45319
1 9957 51419 65767 96547
1 26613 48906 69394 57314
1 53501 94770 64814 21312
1 17181 66742 69740 22586
3 16409 7244 53001
1 88013 89718 83001 55044
1 37425 73824 89216 49784
1 14648 78441 67461 78275
1 9378 35...

output:

4417797626
26979560445
4524699650
21738613173
262351691
12978001923
17651184324
0
273579160
4411564116
1970670680
17453286633
14834332800
20575290994
10992737164
42531639041
7318986928
7239761756
24667868512
11295443456
33762100957
3516593780
14180850735
92220338161
448071480
72233196570
82174722698...

result: