QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#752035#9742. 优秀的拆分diandian2020AC ✓41ms19000kbC++141.4kb2024-11-15 21:42:582024-11-15 21:42:58

Judging History

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

  • [2024-11-15 21:42:58]
  • 评测
  • 测评结果:AC
  • 用时:41ms
  • 内存:19000kb
  • [2024-11-15 21:42:58]
  • 提交

answer

#include<cstdio>
#include<vector>
#include<cstring>
#include<iostream>
#include<algorithm>
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef pair<int,int> PII;
typedef __int128_t INT;
const int N=2e5+9;
const LL P=1e18+3;
int n,p[N];
struct node{
	int v; LL c;
}E,I,tr[N],a[N],b[N],c[N],d[N];
node operator+(node a,node b){
	if(a.v^b.v) return a.v>b.v?a:b;
	return {a.v,(a.c+b.c)%P};
}
void cl(){
	for(int i=1;i<=n;i++) tr[i]=E;
}
void add(int x,node c){
	for(;x<=n;x+=x&-x) tr[x]=tr[x]+c;
}
node query(int x){
	node res=E;
	for(;x;x&=x-1) res=res+tr[x];
	return res;
}
void solve(){
	scanf("%d",&n);
	for(int i=1;i<=n;i++) scanf("%d",&p[i]);
	cl(); for(int i=1;i<=n;i++) a[i]=query(p[i]),a[i].v++,a[i]=a[i]+I,add(p[i],a[i]);
	cl(); for(int i=1;i<=n;i++) b[i]=query(n-p[i]+1),b[i].v++,b[i]=b[i]+I,add(n-p[i]+1,b[i]);
	cl(); for(int i=n;i;i--) c[i]=query(p[i]),c[i].v++,c[i]=c[i]+I,add(p[i],c[i]);
	cl(); for(int i=n;i;i--) d[i]=query(n-p[i]+1),d[i].v++,d[i]=d[i]+I,add(n-p[i]+1,d[i]);
	node t1=E,t2=E;
	for(int i=1;i<=n;i++) t1=t1+a[i],t2=t2+b[i];
	LL r2=(INT)t1.c*t2.c%P; int r1=t1.v+t2.v;
	for(int i=1;i<=n;i++) if(a[i].v+b[i].v+c[i].v+d[i].v-3==r1-1) r2=(r2-(INT)a[i].c*b[i].c%P*c[i].c%P*d[i].c%P+P)%P;
	if(r2) printf("%d\n",r1);
	else printf("%d\n",r1-1);
}
int main(){
	E={-1,0},I={1,1};
	int T; scanf("%d",&T);
	while(T--) solve();
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 11948kb

input:

3
5
3 5 1 4 2
4
1 2 4 3
5
3 5 2 1 4

output:

4
4
5

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 18ms
memory: 12300kb

input:

20000
2
2 1
10
6 10 2 7 9 3 8 4 1 5
9
3 6 4 5 8 9 2 7 1
7
3 7 6 4 1 5 2
7
7 2 3 6 5 1 4
5
4 1 3 2 5
9
6 7 5 3 8 1 9 2 4
3
1 2 3
8
7 2 4 6 1 8 3 5
7
4 2 6 3 1 7 5
8
1 7 3 4 2 5 6 8
2
1 2
10
10 2 3 8 6 9 1 4 7 5
4
3 2 1 4
9
7 5 3 4 1 2 9 6 8
7
2 4 5 1 6 7 3
10
3 1 10 4 9 5 6 8 2 7
5
1 2 5 3 4
6
2 6 5 ...

output:

2
8
8
6
7
5
7
3
6
6
8
2
8
4
7
6
9
5
6
7
7
8
9
7
8
1
5
6
5
7
3
3
4
3
6
7
6
1
6
5
1
8
6
8
6
6
2
3
2
6
8
5
6
5
7
3
2
7
7
6
3
1
3
1
8
7
8
4
1
1
8
7
7
2
7
2
1
9
2
5
6
3
5
6
8
6
2
2
1
6
6
7
8
3
1
8
6
10
2
8
8
4
6
3
8
8
2
4
1
3
5
8
9
1
7
7
2
6
7
4
8
1
2
5
3
1
8
6
7
1
9
7
5
7
3
8
1
5
5
6
4
5
4
1
6
2
7
6
1
7...

result:

ok 20000 lines

Test #3:

score: 0
Accepted
time: 17ms
memory: 14448kb

input:

20
895
97 29 511 535 178 149 710 846 37 191 684 504 309 528 524 189 659 42 337 688 213 343 859 433 606 445 693 608 232 585 577 313 759 746 612 341 480 875 610 222 28 637 11 91 796 261 296 333 377 871 275 552 788 371 763 862 522 322 447 126 492 694 799 620 842 394 434 706 460 479 240 241 676 502 749 ...

output:

115
165
331
171
112
204
247
226
239
114
231
241
57
229
371
243
347
120
62
352

result:

ok 20 lines

Test #4:

score: 0
Accepted
time: 25ms
memory: 19000kb

input:

2
66375
22486 8985 25896 9585 22371 18677 32794 51856 4976 20566 19519 11668 36820 19785 27213 14206 5728 54919 55392 20146 5373 20907 66131 64447 53265 22521 1393 31296 58406 54362 2294 13520 13660 59044 13345 44636 52942 37423 64998 54440 50291 61802 16224 5240 59589 52028 52268 6841 12466 65025 5...

output:

1000
317

result:

ok 2 lines

Test #5:

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

input:

1
32819
25454 18203 11285 15122 31242 9557 17292 31209 2640 19069 28006 6007 31106 8326 3990 27947 7492 12774 32211 1020 4848 30327 16472 8098 19636 1940 15391 18106 3008 22302 23602 4422 10926 27042 7619 27628 6755 30569 4901 25656 27915 32646 10310 24167 3546 24772 7010 14128 29519 24693 2421 3121...

output:

705

result:

ok single line: '705'

Test #6:

score: 0
Accepted
time: 41ms
memory: 14036kb

input:

200000
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1...

output:

1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
...

result:

ok 200000 lines

Extra Test:

score: 0
Extra Test Passed