QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#601703#5278. Mex and Cardshuaxiamengjin#TL 30ms9800kbC++141.3kb2024-09-30 11:16:302024-09-30 11:16:30

Judging History

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

  • [2024-09-30 11:16:30]
  • 评测
  • 测评结果:TL
  • 用时:30ms
  • 内存:9800kb
  • [2024-09-30 11:16:30]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long 
int n,a[200100];
int mn[1001001],s[1001001],ls[1001001];

void build(int p,int l,int r,int pre){
	if(l==r)return mn[p]=a[l],ls[p]=a[l],s[p]=0,void();
	int mid=l+r>>1;
	build(p<<1,l,mid,pre);build(p<<1|1,mid+1,r,min(mn[p<<1],pre));
	mn[p]=min(mn[p<<1],mn[p<<1|1]);
	ls[p]=ls[p<<1];
	s[p]=s[p<<1]+s[p<<1|1]+(mid+1)*max(min(pre,mn[p<<1])-ls[p<<1|1],0ll);
}
void push(int p,int l,int r,int x,int pre){
	if(l==r)return mn[p]=a[l],ls[p]=a[l],s[p]=0,void();
	int mid=l+r>>1;
	if(x<=mid)push(p<<1,l,mid,x,pre);
	if(!(x<l&&mn[p<<1]<=pre))push(p<<1|1,mid+1,r,x,min(pre,mn[p<<1]));
	mn[p]=min(mn[p<<1],mn[p<<1|1]);
	ls[p]=ls[p<<1];
	s[p]=s[p<<1]+s[p<<1|1]+(mid+1)*max(min(pre,mn[p<<1])-ls[p<<1|1],0ll);
//	if(x==7)cout<<l<<" "<<r<<" "<<mid<<" "<<pre<<" "<<s[p]<<" "<<mn[p<<1]<<" "<<ls[p<<1|1]<<" "<<ls[p]<<" "<<ls[p<<1|1]<<" "<<mn[p]<<"****\n";
}
signed main(){
	cin>>n;
	for (int i=0;i<n;i++)
	cin>>a[i];
	int q;
	cin>>q;
	build(1,0,n-1,1e9);
	cout<<s[1]+mn[1]*n<<"\n";
	int op,x;
	while(q--){
		cin>>op;
		if(op==1){
			cin>>x;
			a[x]++;
			push(1,0,n-1,x,1e9);
			cout<<s[1]+mn[1]*n<<"\n";
		}else {
			cin>>x;
			a[x]--;
			push(1,0,n-1,x,1e9);
			cout<<s[1]+mn[1]*n<<"\n";
		}
	}
} 

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 9784kb

input:

5
2 1 3 0 2
6
1 0
1 1
2 4
1 3
2 1
2 1

output:

4
5
7
7
9
7
3

result:

ok 7 numbers

Test #2:

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

input:

1
0
0

output:

0

result:

ok 1 number(s): "0"

Test #3:

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

input:

10
3 8 1 4 10 3 10 9 7 10
20
2 5
1 4
1 2
1 4
1 3
1 3
1 0
2 8
1 5
1 4
1 0
1 3
1 8
1 6
1 4
1 1
1 5
1 9
1 6
2 7

output:

14
14
14
22
22
22
22
24
24
24
24
26
26
26
26
26
26
26
26
26
26

result:

ok 21 numbers

Test #4:

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

input:

10
9 8 7 5 5 4 3 2 1 1
20
2 4
1 8
2 6
1 2
1 2
2 5
2 2
1 0
1 6
1 6
2 9
1 2
2 7
2 8
2 3
1 9
1 7
1 4
2 6
1 7

output:

45
44
45
44
45
45
44
44
45
46
46
45
45
43
43
42
43
44
44
44
45

result:

ok 21 numbers

Test #5:

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

input:

100
969 519 608 546 957 82 670 100 92 581 974 529 970 54 639 216 238 620 966 162 430 10 446 884 895 292 450 180 619 389 943 855 204 605 514 997 325 98 643 915 744 249 333 431 160 434 714 976 168 573 682 69 873 285 668 561 159 858 864 683 266 564 350 214 461 421 213 568 279 624 749 433 735 437 978 95...

output:

4923
4923
4923
4923
4923
4923
4923
4923
4923
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4927
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
4931
...

result:

ok 1001 numbers

Test #6:

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

input:

100
994 983 981 980 962 959 959 950 933 887 877 869 841 828 809 807 803 793 789 778 773 772 768 767 765 765 759 757 749 747 742 738 730 724 681 675 656 638 627 626 615 612 593 592 545 543 540 534 531 529 525 520 518 515 512 510 500 494 472 472 432 415 414 411 399 375 350 328 315 307 292 261 258 246 ...

output:

51041
51042
51041
51042
51043
51042
51043
51042
51040
51038
51037
51038
51039
51038
51039
51040
51039
51040
51039
51038
51037
51036
51037
51038
51037
51038
51037
51036
51035
51036
51037
51035
51034
51035
51034
51035
51036
51037
51036
51037
51039
51038
51037
51036
51035
51034
51033
51032
51031
51032
...

result:

ok 1001 numbers

Test #7:

score: 0
Accepted
time: 30ms
memory: 7760kb

input:

1000
549187 776775 748956 28001 575132 18015 112492 144497 206885 842190 403842 456113 424268 871411 648618 186832 693358 781526 443190 175126 586343 918652 923262 973941 509929 433837 392849 452585 497398 331180 118333 152788 959909 539943 747365 261855 819641 618091 801231 355664 285761 895793 398...

output:

6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317898
6317...

result:

ok 10001 numbers

Test #8:

score: 0
Accepted
time: 8ms
memory: 7700kb

input:

1000
999823 997756 997661 997567 995015 993681 993623 993621 993428 993163 990908 989370 987917 986483 984926 983477 982705 982330 982173 981725 981590 980871 980406 978064 976231 974657 969279 968447 968067 967307 966294 965934 965581 964707 964400 962842 962262 961936 961798 961105 958480 957851 9...

output:

515262961
515262960
515262959
515262958
515262959
515262960
515262961
515262960
515262961
515262962
515262963
515262964
515262963
515262964
515262963
515262964
515262965
515262964
515262965
515262966
515262965
515262966
515262967
515262966
515262967
515262968
515262969
515262968
515262967
515262966
...

result:

ok 10001 numbers

Test #9:

score: -100
Time Limit Exceeded

input:

10000
810601 729711 139357 433916 959178 573779 86115 773421 634334 59653 613563 529054 644885 727194 44262 709529 1681 469658 158976 628846 642964 486044 969568 598670 753102 925097 495487 506784 238141 791563 750457 218880 115527 944709 664199 321209 984344 317419 568689 296228 50862 458459 766006...

output:

6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625728
6625...

result: