QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#749479#9742. 优秀的拆分isAKnoya#AC ✓62ms8732kbC++231.7kb2024-11-15 01:20:362024-11-15 01:20:38

Judging History

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

  • [2024-11-15 01:20:38]
  • 评测
  • 测评结果:AC
  • 用时:62ms
  • 内存:8732kb
  • [2024-11-15 01:20:36]
  • 提交

answer

#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
void debug_(const auto&...a){
	((std::cerr<<a<<' '),...)<<'\n';
}
#define debug(a...) debug_(__LINE__,":",#a,"=",a)
using ll=long long;
#define int ll
using i128=__int128;
template<typename T>using V=std::vector<T>;
using vi=V<int>;
using pii=std::pair<int,int>;
using std::cin,std::cerr,std::cout;
#define all(c) std::begin(c),std::end(c)
#define eb emplace_back
#define pb push_back
constexpr ll M=ll(1e18)+9;
pii&operator+=(pii&a,pii b){
	if(a.first<b.first)std::swap(a,b);
	if(a.first==b.first)(a.second+=b.second)%=M;
	return a;
}
signed main(){
	// sieve();
	// for(auto&x:prime)cerr<<x<<' ';
	cin.tie(0)->sync_with_stdio(0);
	int T;
	cin>>T;
	while(T--){
		int n;
		cin>>n;
		vi p(n+2);
		// vi fi=p,fd=p;
		// vi fwi=p,fwd=p;
		for(int i=1;i<=n;++i)cin>>p[i];
		auto solve=[&](){//LIS by default
			V<pii>fw(n+2),f(n+2);
			auto add=[&](int i,pii x){
				for(++i;i<ssize(fw);i+=i&-i)fw[i]+=x;
			};
			auto sum=[&](int i){
				pii x(-1,0);
				for(++i;i;i-=i&-i)x+=fw[i];
				return x;
			};
			add(0,pii(0,1));
			for(int i=1;i<=n;++i){
				f[i]=sum(p[i]);
				f[i].first++;
				add(p[i],f[i]);
			}
			f.back()=sum(n);
			return f;
		};
		auto prei=solve();
		for(auto&x:p)x=n-x+1;
		auto pred=solve();
		reverse(all(p));
		auto sufi=solve();
		for(auto&x:p)x=n-x+1;
		auto sufd=solve();
		auto[ansi,wi]=prei.back();
		auto[ansd,wd]=pred.back();
		i128 tot=wi;
		(tot*=wd)%=M;
		for(int i=1;i<=n;++i)if(prei[i].first+sufi[n-i+1].first-1==ansi&&pred[i].first+sufd[n-i+1].first-1==ansd){
			tot=(tot-prei[i].second*i128(pred[i].second)%M*sufi[n-i+1].second%M*sufd[n-i+1].second)%M;
		}
		printf("%lld\n",ll(ansi+ansd-(!tot)));
	}
}

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

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3760kb

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: 15ms
memory: 3792kb

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: 21ms
memory: 4468kb

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: 24ms
memory: 8732kb

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: 12ms
memory: 5844kb

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: 62ms
memory: 3760kb

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