QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#647808#7434. 冷たい部屋、一人Ihave4orangesRE 288ms267176kbC++146.1kb2024-10-17 15:47:002024-10-17 15:47:02

Judging History

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

  • [2024-10-17 15:47:02]
  • 评测
  • 测评结果:RE
  • 用时:288ms
  • 内存:267176kb
  • [2024-10-17 15:47:00]
  • 提交

answer

#include <bits/stdc++.h>
#define ll long long
using namespace std;
//#define fread fread_unlocked
//#define fwrite fwrite_unlocked
const int LEN=10000005;int ED1=-1;
char Buf[LEN],*OP=Buf,*ED=Buf,Buf1[LEN+2];
inline void flush(){fwrite(Buf1,1,ED1+1,stdout),ED1=-1;}
inline char gc(){return (OP==ED)?(ED=(OP=Buf)+fread(Buf,1,LEN,stdin),*OP++):(*OP++);}
inline void pc(char ch){Buf1[ED1==LEN?(flush(),ED1=0):++ED1]=ch;}
inline int read(){
	int x=0;char ch=gc();
	while(!isdigit(ch)) ch=gc();
	while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch^48),ch=gc();
	return x;
}
inline void write(unsigned long long x){
	if(x==0){pc('0');pc('\n');return;}
	char ch[20];short cnt=-1;
	while(x){
		ch[++cnt]=(char)((x%10)^48);
		x/=10;
	}
	for(int i=cnt;i>=0;--i) pc(ch[i]);
	pc('\n');
}
const int B=800;
const int B2=1024;
const int bB=10;
struct NTT{
	unsigned int a[500005],s[500005];
	NTT(){memset(a,0,sizeof(a));memset(s,0,sizeof(s));}
	void add(int x){
		++a[x];
		++s[((x-1)>>bB)+1];
	}
	unsigned long long ask(int l,int r){
		int bl=((l-1)>>bB)+1,br=((r-1)>>bB)+1;
		ll res=0;
		if(bl==br){
			for(int i=l;i<=r;++i) res+=a[i];
		}else{
			for(int i=l;i<=(bl<<bB);++i) res+=a[i];
			for(int i=bl+1;i<=br;++i) res+=s[i];
		}
		return res;
	}
};
struct Query{
	int l,r,id;
	Query(){}
	Query(int a,int b,int c){l=a;r=b;id=c;}
};
unsigned long long F[500005];
struct List{
	int a[500005];
	int s[500005];
	bool b[500005];
	int to[500005];
	int top;
	int stk[500005];
	unsigned long long ans[2500005];
	void clear(int n){for(int i=0;i<=n+1;++i)b[i]=to[i]=a[i]=s[i]=0;top=0;}
	void geta(int* aa,int n){for(int i=1;i<=n;++i)a[i]=aa[i],s[i]=s[i-1]+a[i];}
	void insert(int x){
//		cerr<<"insert "<<x<<endl;
		++top;
		ans[top]=ans[top-1];
		stk[top]=x;
		b[x]=1;
		if(!b[x-1]&&!b[x+1]){
			to[x]=x;
			return;
		}
		if(!b[x-1]){
			ans[top]-=F[s[to[x+1]]-s[x]];
			to[to[x]=to[x+1]]=x;
			ans[top]+=F[s[to[x]]-s[x-1]];
		}else if(!b[x+1]){
			ans[top]-=F[s[x-1]-s[to[x-1]-1]];
			to[to[x]=to[x-1]]=x;
			ans[top]+=F[s[x]-s[to[x]-1]];
		}else{
			ans[top]+=(s[x-1]-s[to[x-1]-1])*(s[to[x+1]]-s[x]);
			if(a[x]) ans[top]+=s[to[x+1]]-s[to[x-1]-1]-1;
			int l=to[x-1],r=to[x+1];
			to[l]=r;to[r]=l;
		}
//		cerr<<ans[top]<<endl;
	}
	void undo(int cnt){
//		cerr<<"undo "<<cnt<<endl;
		while(cnt--){
			int x=stk[top];
			--top;
			if(to[x-1]){
				if(to[x-1]<x) to[to[x-1]]=x-1;
				else to[x-1]=x-1;
			}
			if(to[x+1]){
				if(to[x+1]>x) to[to[x+1]]=x+1;
				else to[x+1]=x+1;
			}
			to[x]=b[x]=0;
		}
	}
	void reset(){undo(top);}
	unsigned long long ask(){return ans[top];}
};
int N;
struct FFT{
	int n,Q,m,BB;
	int a[500005];
	Query q[500005];
	unsigned long long ans[500005];
	int oc[500005][3],R[500005];
	set<int> se;
	vector<int> qr[500005];
	int imp[500005];
	int lb[500005];
	List ls;
	void clear(){se.clear();for(int i=1;i<=m;++i)R[imp[i]]=-1;for(int i=1;i*BB-BB+1<=n;++i)qr[i].clear();ls.clear(n);n=Q=0;}
	void push_back(int x,int y){a[++n]=y;se.insert(x);oc[x][++R[x]]=n;if(R[x]>=1)assert(0);}
	void add_query(Query qq){q[++Q]=qq;}
	void run(){
//		cerr<<"run\n";
		ls.geta(a,n);
		m=0;
		for(int i=1;i<=N+1;++i) lb[i]=0;
		for(auto x:se) imp[lb[x]=++m]=x;
		BB=0.7*m/sqrt(Q);
		if(BB==0) BB=1;
		for(int i=N+1,lst=m+1;i;--i){
			if(lb[i]) lst=lb[i];
			else lb[i]=lst;
		}
		for(int i=1;i<=Q;++i){
			q[i].l=lb[q[i].l];
			q[i].r=lb[q[i].r+1]-1;
			if(q[i].l<=q[i].r){
				if((q[i].l-1)/BB==(q[i].r-1)/BB){
					ls.reset();
					for(int j=q[i].l;j<=q[i].r;++j)
						for(int k=0;k<=R[imp[j]];++k) ls.insert(oc[imp[j]][k]);
					ans[q[i].id]+=ls.ask();
//					cerr<<"ans="<<ans[i]<<endl;
				}else qr[(q[i].l-1)/BB+1].push_back(i);
			}
		}
//		cerr<<"--------\n";
		for(int i=1;i*BB-BB+1<=n;++i){
			if(qr[i].empty()) continue;
			ls.reset();
			int L=i*BB+1,l=i*BB+1,r=i*BB;
			for(auto qi:qr[i]){
				while(r<q[qi].r){
					++r;
					for(int k=0;k<=R[imp[r]];++k) ls.insert(oc[imp[r]][k]);
				}
				int cnt=0;
				while(l>q[qi].l){
					--l;
					for(int k=0;k<=R[imp[l]];++k) ls.insert(oc[imp[l]][k]),++cnt;
				}
				ans[q[qi].id]+=ls.ask();
				ls.undo(cnt);
				l=L;
			}
		}
	}
};
int n,Q;
int a[500005],p[500005];
int cnt[500005];
vector<int> oc[500005];
vector<int> vc[500005];
vector<int> qr[500005];
int mn[20][500005],mx[20][500005];
Query q[500005];
unsigned long long ans[500005];
int lg2[500005];
NTT ntt1;
FFT fft1;
int askMn(int l,int r){
	int len=__lg(r-l+1);
	return min(mn[len][l],mn[len][r-(1<<len)+1]);
}
int askMx(int l,int r){
	int len=__lg(r-l+1);
	return max(mx[len][l],mx[len][r-(1<<len)+1]);
}
signed main(){
	n=read();Q=read();
	N=n;
	lg2[0]=-1;
	for(int i=1;i<=n;++i) lg2[i]=lg2[i>>1]+1;
	for(int i=1;i<=n;++i) F[i]=(unsigned long long)i*(i-1)/2;
	for(int i=1;i<=n;++i) a[i]=read(),++cnt[a[i]],oc[a[i]].push_back(i);
	for(int i=1;i<=n;++i) p[i]=read(),mn[0][i]=mx[0][i]=p[i];
	for(int i=1;i<=Q;++i) q[i].id=i,q[i].l=read(),q[i].r=read();
	sort(q+1,q+Q+1,[&](Query x,Query y){return x.r<y.r;});
	for(int i=1;i<=Q;++i) qr[q[i].r].push_back(i);
	for(int i=1;i<20;++i)
		for(int j=1;j+(1<<i)-1<=n;++j){
			mn[i][j]=min(mn[i-1][j],mn[i-1][j+(1<<(i-1))]);
			mx[i][j]=max(mx[i-1][j],mx[i-1][j+(1<<(i-1))]);
		}
	for(int i=1;i<=n;++i){
//		cerr<<"i="<<i<<endl;
		sort(oc[i].begin(),oc[i].end());
		if(cnt[i]<=B){
			for(int j=0;j+1<cnt[i];++j){
				for(int k=j+1;k<cnt[i];++k){
					int l=askMn(oc[i][j],oc[i][k]);
					int r=askMx(oc[i][j],oc[i][k]);
					vc[r].push_back(l);
				}
			}
		}else{
			fft1.clear();
			for(int j=0;j<cnt[i];++j){
				fft1.push_back(p[oc[i][j]],1);
				if(j+1!=cnt[i]){
					if(oc[i][j]+1!=oc[i][j+1]){
						int l=askMn(oc[i][j]+1,oc[i][j+1]-1);
						int r=askMx(oc[i][j]+1,oc[i][j+1]-1);
						fft1.push_back(l,0);
						if(r!=l) fft1.push_back(r,0);
					}
				}
			}
			for(int j=1;j<=Q;++j) fft1.add_query(q[j]);
			fft1.run();
		}
	}
	for(int j=1;j<=Q;++j) ans[j]=fft1.ans[j];
	for(int i=1;i<=n;++i){
		for(int x:vc[i]) ntt1.add(x);
		for(int qi:qr[i]) ans[q[qi].id]+=ntt1.ask(q[qi].l,i);
	}
	for(int i=1;i<=Q;++i) write(ans[i]);
	return flush(),0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 7ms
memory: 97876kb

input:

100 100
4 1 5 1 2 1 7 5 3 7 2 3 6 6 5 3 2 2 4 1 6 5 6 2 2 2 7 6 1 3 6 3 5 6 7 6 1 2 3 3 4 2 1 1 5 4 4 3 6 7 1 1 6 1 5 6 2 3 7 4 2 4 6 7 7 3 5 3 7 2 3 3 5 1 4 7 1 2 2 5 2 2 4 3 4 7 2 7 7 3 7 3 6 6 5 4 5 4 7 6
93 52 12 70 25 36 18 37 27 99 68 40 84 3 76 57 60 19 33 41 92 87 58 13 15 43 28 63 64 59 31 ...

output:

1
0
13
71
1
1
3
7
0
0
2
1
3
20
12
6
61
24
1
0
0
2
3
19
0
0
6
2
0
0
4
1
135
0
19
1
1
29
14
39
1
0
1
7
7
0
12
3
0
1
0
1
1
5
0
28
14
19
2
1
0
0
6
5
0
0
2
7
5
1
2
2
0
1
11
1
0
1
0
10
0
0
5
1
33
1
17
2
1
22
20
1
2
0
0
16
0
1
1
15

result:

ok 100 numbers

Test #2:

score: 0
Accepted
time: 11ms
memory: 101960kb

input:

100 100
8 8 2 8 8 12 11 8 5 5 5 1 7 6 6 11 3 13 1 12 2 2 4 1 11 13 10 7 1 2 4 3 1 12 1 5 13 8 1 5 12 5 12 4 6 3 5 4 8 3 4 1 4 3 9 2 11 9 4 8 12 3 5 13 13 1 9 12 2 13 8 13 4 13 12 5 12 13 2 6 4 4 1 6 6 9 12 7 4 3 10 7 1 7 7 10 4 12 3 9
96 87 12 73 74 78 99 76 7 77 54 88 90 86 95 94 31 83 27 11 66 91 ...

output:

0
6
2
0
0
1
16
1
1
10
7
9
2
8
2
1
3
5
0
7
2
0
2
0
1
0
7
0
0
1
108
0
0
0
6
4
1
0
2
13
0
3
0
10
0
0
1
21
0
18
0
11
0
8
13
9
0
0
0
11
12
2
1
0
2
16
1
7
0
16
0
2
3
7
0
2
10
1
4
2
6
0
0
6
3
0
0
0
5
7
0
0
6
0
7
0
4
0
3
0

result:

ok 100 numbers

Test #3:

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

input:

100 100
13 4 2 1 1 2 1 39 20 1 1 1 33 1 1 1 9 37 21 7 14 58 1 3 19 29 40 56 2 1 3 1 42 1 1 13 1 3 5 4 49 1 1 8 8 3 1 14 1 1 2 6 17 3 2 2 2 9 3 1 17 90 1 1 1 1 8 14 17 16 1 33 15 20 46 22 2 20 11 1 28 3 1 4 1 17 3 9 10 2 1 2 2 6 1 1 3 17 27 2
86 82 24 49 50 32 63 20 53 11 60 1 16 27 15 14 12 88 52 17...

output:

1
84
13
0
7
4
26
1
9
1
7
3
10
0
7
3
6
4
4
0
13
1
0
4
4
0
40
22
36
0
5
6
0
37
28
213
1
6
10
4
0
3
5
0
3
5
25
2
0
1
3
12
1
39
0
8
4
2
6
0
6
4
23
17
0
0
4
13
6
6
0
0
6
10
11
30
0
7
10
10
101
0
1
0
62
0
10
100
26
4
5
1
24
0
1
4
15
3
0
6

result:

ok 100 numbers

Test #4:

score: 0
Accepted
time: 11ms
memory: 101968kb

input:

100 100
1 1 1 1 1 36 58 18 15 1 1 2 1 1 1 1 4 10 9 2 2 4 28 1 2 1 2 2 28 27 12 6 3 10 1 1 2 1 1 2 7 40 1 4 8 17 16 3 5 1 2 2 16 5 6 1 5 3 4 11 1 1 11 51 11 4 3 7 14 16 1 11 1 2 8 3 4 1 1 3 2 5 21 7 3 10 2 2 1 20 23 1 3 6 1 1 15 3 34 1
8 1 2 3 92 48 11 43 9 71 69 5 6 7 12 26 31 45 80 83 14 16 17 25 2...

output:

29
1
9
19
6
1
3
2
0
16
15
2
11
14
24
191
25
21
33
34
19
2
0
0
11
32
1
9
2
16
24
28
9
0
123
4
6
0
13
69
271
15
47
6
0
121
0
1
15
1
9
61
0
63
10
2
2
13
55
25
12
2
40
4
3
39
14
15
0
15
2
48
6
0
0
6
0
5
0
11
3
1
78
9
12
0
0
14
15
38
7
3
0
12
10
0
1
6
0
22

result:

ok 100 numbers

Test #5:

score: 0
Accepted
time: 11ms
memory: 101960kb

input:

100 100
1 15 6 12 6 13 8 8 3 5 14 5 7 13 8 1 1 3 8 5 4 7 9 1 1 7 4 14 7 5 4 6 7 5 11 6 4 14 8 11 12 9 12 14 10 12 9 14 14 11 12 12 11 8 5 11 10 6 13 5 6 4 6 15 10 2 13 12 7 15 9 14 15 1 9 9 8 4 5 2 2 5 13 14 12 5 9 13 7 12 1 1 1 7 10 5 11 4 4 6
17 65 39 50 77 97 44 15 72 11 8 59 74 14 1 3 5 68 21 4 ...

output:

24
5
0
4
0
1
0
0
2
0
2
11
0
13
12
3
19
0
0
0
5
1
0
0
14
0
9
0
1
22
7
25
44
0
7
0
0
3
27
1
0
0
8
3
0
0
2
2
18
26
63
15
2
28
0
1
8
10
18
19
4
0
0
5
0
0
3
15
5
63
5
8
29
0
14
8
7
2
3
1
1
1
2
1
6
8
0
0
19
0
20
0
3
11
0
4
6
5
55
0

result:

ok 100 numbers

Test #6:

score: 0
Accepted
time: 15ms
memory: 125704kb

input:

5000 5000
2 29 12 10 25 32 45 18 16 38 41 50 8 32 54 37 18 29 37 42 9 38 25 43 35 5 47 20 32 35 8 14 8 37 30 16 45 19 14 33 14 31 31 33 28 12 11 49 32 6 11 4 50 39 3 55 25 26 13 40 41 44 31 31 18 19 25 18 29 19 21 1 52 19 2 53 39 55 11 27 54 22 16 49 12 23 41 22 34 38 40 20 5 35 43 40 29 14 20 40 6 ...

output:

21908
618
65611
229
7839
55433
12508
4205
5
12239
31375
1958
20
2290
29810
13020
12234
5752
14318
13451
122
0
109
3852
26843
12709
11522
14307
45468
886
5020
6667
21808
3367
637
593
37
5078
2698
61
364
20500
88231
2311
39
2487
18627
3425
194
4845
54212
84095
14695
8
67509
4364
312
23989
3876
86722
1...

result:

ok 5000 numbers

Test #7:

score: 0
Accepted
time: 7ms
memory: 127092kb

input:

5000 5000
15 86 121 63 26 26 74 43 35 32 48 131 61 120 103 48 101 1 70 97 130 105 30 38 68 141 85 141 108 17 143 106 47 90 4 68 63 8 79 26 10 66 48 61 18 75 62 84 80 113 20 27 109 102 32 13 20 63 12 53 112 146 33 27 49 110 55 132 121 67 75 18 38 80 140 62 7 20 104 4 42 91 67 20 127 77 13 141 64 3 28...

output:

0
132
8
26
0
32
1
61
40
0
0
0
0
18
49
15
0
14
2
63
24
9
10
94
10
21
1
2
1
6
17
21
1
83
19
9
0
21
67
8
13
0
0
0
13
1
0
21
0
13
1
123
0
0
8
0
0
10
14
2
32
2
8
53
29
0
23
6
6
0
0
13
0
1
0
3
0
0
1
0
5
15
15
0
4
4
1
0
1
0
0
2
1
0
0
0
0
1
2
1
11
23
45
1
0
9
14
104
60
8
3
1
2
38
34
32
1
0
0
38
27
18
62
0
5...

result:

ok 5000 numbers

Test #8:

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

input:

5000 5000
342 3 498 1667 87 63 8 215 1 25 67 5 7 600 1 1 51 14 6 1990 7 2707 105 637 5 805 328 74 1 57 316 236 6 1 1 700 965 2 493 21 12 2 1 1626 1 1352 11 109 1 2253 70 4 788 55 140 1 2 1 57 21 1 530 3060 62 266 86 32 1861 1 173 2 2 234 1 402 1392 101 9 7 1 8 3 8 137 46 4 17 212 1 4 10 6 1389 200 4...

output:

31295
316
211
102
965
1000
240
6385
76
10466
792
35
1756
169788
1195
1314
387
227
1144
30655
418
111933
122174
553
30337
24
67
125165
1286
28309
2796
6724
354
4078
17
138
11139
1
56797
1
2093
300
103019
8
257
28645
121966
128335
119276
5970
21
122331
475
103019
4
298
179
32016
121637
194237
53
12189...

result:

ok 5000 numbers

Test #9:

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

input:

5000 5000
27 32 25 415 15 148 94 43 16 3 71 1 11 33 159 1196 1069 752 1937 1 35 29 12 1 389 38 8 49 1 1 582 7 1274 30 9 123 68 14 3 7 88 4 11 3126 176 1304 6 659 118 128 1 537 100 784 225 42 37 36 2 15 2 359 411 60 4 261 1 3 61 11 88 154 2674 162 1014 1875 1 3 139 3 196 8 67 99 187 559 2 1 459 10 1 ...

output:

85
28
1761
27
50
45
0
43
1
3
5
4
15
425
0
1
7
23
1
42
0
0
7
51
3
27
28
3
26
0
58
82
53
494
9
88
33
33
17
49
9
0
63
105
0
9
17
1
252
11
3
107
1
2
0
0
17
24
5
414
0
70
98
40
29
553
216
521
2
246
0
122
6
14
0
4
70
310
72
23
191
115
5
3
12
0
0
6292
10
64
16
8
17
28
0
3
157
1
3
32
64
0
26
14
307
1
19
26
...

result:

ok 5000 numbers

Test #10:

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

input:

5000 5000
11 23 46 15 52 41 22 12 24 42 36 22 61 6 21 31 43 15 11 54 20 58 57 39 51 14 2 41 35 20 16 12 9 25 39 8 60 32 20 60 51 52 19 34 19 60 33 48 17 42 12 50 38 4 30 16 48 49 55 58 57 5 39 61 39 32 51 14 2 10 57 43 41 8 12 5 58 36 14 34 32 17 49 24 60 58 55 60 25 18 6 3 44 47 7 17 24 5 10 35 7 1...

output:

608
171
30
6024
1921
142
1462
718
16
5
2
143
1939
971
40
59
3345
98
679
54
405
318
55
399
28
642
1481
0
58
1874
1591
0
1076
3357
465
3566
763
532
2615
337
0
1842
140
588
1753
0
197
3945
1753
33
1868
105
33
167
917
0
1895
45
1364
3626
1555
235
30
1964
4545
5583
360
214
530
263
1895
892
18
823
99
2593...

result:

ok 5000 numbers

Test #11:

score: 0
Accepted
time: 288ms
memory: 267176kb

input:

200000 200000
450 380 429 292 321 431 244 311 46 303 35 470 556 53 249 617 400 730 447 823 508 364 616 659 843 840 80 572 310 461 342 805 733 267 441 810 191 675 618 165 380 64 359 514 592 304 551 679 492 484 24 355 489 456 61 590 445 588 470 836 493 213 730 417 675 436 496 393 677 10 397 143 573 44...

output:

19810
486331
568929
123972
48879
617941
1254986
1109929
112192
594018
0
560940
13348
1728346
38662
16235
53474
756623
447220
925352
1878
8672
17371
853
144927
1300294
114644
72
104581
59
386661
1138358
1613460
160107
493876
88493
1693729
248416
553305
21021
174725
39537
35619
7653
270063
863775
2837...

result:

ok 200000 numbers

Test #12:

score: -100
Runtime Error

input:

200000 200000
19366 9283 162 4589 57 291 1 3 12 278 10 672 3 26 4 1 162500 668 1239 4473 2202 126 7615 9046 4210 1277 6 931 7 73 788 1779 8309 782 4 31785 414 4639 13637 753 5 1 66995 9 38399 9 1 38 7 12 111 88737 1020 1 219 3 18605 3 42958 22 1 7920 1 7602 12 320 1 2 329 3404 15 47 1 10 4 3 983 3 5...

output:


result: