QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#764738#9631. Median Replacement275307894a#WA 6ms4076kbC++142.2kb2024-11-20 10:30:242024-11-20 10:30:35

Judging History

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

  • [2024-11-20 10:30:35]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:4076kb
  • [2024-11-20 10:30:24]
  • 提交

answer

#include<bits/stdc++.h>
#define Gc() getchar()
#define Me(x,y) memset(x,y,sizeof(x))
#define Mc(x,y) memcpy(x,y,sizeof(x))
#define d(x,y) ((m)*(x-1)+(y))
#define R(n) (rnd()%(n)+1)
#define Pc(x) putchar(x)
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
#define eb emplace_back
#define all(x) x.begin(),x.end()
using namespace std;using ll=long long;using db=double;using lb=long db;using ui=unsigned;using ull=unsigned long long;using pii=pair<int,int>;
const int N=200+5,M=N*4+5,K=1000+5,mod=1e9+7,Mod=mod-1;const db eps=1e-9;const int INF=1e9+7;mt19937 rnd(28382);
#define Tp template<typename T>
#define Ts template<typename T,typename... Ar>
namespace Debug{
	Tp void _debug(char* f,T t){cerr<<f<<'='<<t<<endl;}
	Ts void _debug(char* f,T x,Ar... y){while(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);}
	#ifdef LOCAL
	#define gdb(...) _debug((char*)#__VA_ARGS__,__VA_ARGS__)
	#else 
	#define gdb(...) void()
	#endif
}using namespace Debug;
int n,k=155,L[N],R[N],ns[N],nh;
ll dp[N][3];
int X[N];ll Y[N];
ll mpow(ll x,int y=mod-2){ll ans=1;while(y) y&1&&(ans=ans*x%mod),y>>=1,x=x*x%mod;return ans;}
ll calc(int l,int r,int x){
	ll tot=0;
	for(int i=l;i<=r;i++) (Y[i]+=Y[i-1])%=mod;
	for(int i=l;i<=r;i++){
		ll w=Y[i],pw=1;
		for(int j=l;j<=r;j++) if(i^j) w=w*(x+mod-X[j])%mod,pw=pw*(X[i]+mod-X[j])%mod;
		tot+=w*mpow(pw)%mod;
	}
	return tot%mod;
}
void Solve(){
	scanf("%d",&n);
	ns[nh=1]=1;
	for(int i=1;i<=n;i++) scanf("%d",&L[i]),ns[++nh]=L[i];
	for(int i=1;i<=n;i++) scanf("%d",&R[i]),ns[++nh]=R[i]+1;
	ll mul=1;
	for(int i=1;i<=n;i++) (mul*=R[i]-L[i]+1)%=mod;
	sort(ns+1,ns+nh+1);
	ll ans=0;
	for(int i=1;i<nh;i++){
		int l=ns[i],r=ns[i+1]-1;
		for(int i=l;i<=r&&i<l+k;i++){
			Me(dp,0);dp[0][0]=1;
			for(int j=1;j<=n;j++){
				ll w0=min(max(L[j],i),R[j]+1)-L[j],w1=R[j]-L[j]+1-w0;
				dp[j][0]=(dp[j-1][0]*w0+dp[j-1][2]*w0)%mod;
				dp[j][1]=dp[j-1][0]*w1%mod;
				dp[j][2]=dp[j-1][1]*w0%mod;
			}
			X[i-l+1]=i;Y[i-l+1]=mul+mod-(dp[n][0]+dp[n][1]+dp[n][2])%mod;
		}
		ans+=calc(1,min(k,r-l+1),r);
	}
	printf("%lld\n",ans%mod);
}
int main(){
	int t=1;
	scanf("%d",&t);
	while(t--) Solve();
	cerr<<clock()*1.0/CLOCKS_PER_SEC<<'\n';
}

詳細信息

Test #1:

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

input:

10
5
5 1 4 3 2
14 2 5 3 2
5
4 5 1 2 3
13 7 1 2 3
5
5 2 5 3 1
10 2 12 3 2
5
5 5 3 1 5
57 5 3 1 5
5
2 2 3 3 5
4 5 4 4 5
5
4 5 3 5 3
13 7 3 5 3
5
5 1 4 2 3
14 3 4 2 3
5
1 2 5 4 5
2 8 5 7 5
5
1 1 3 5 1
8 2 3 8 1
5
4 4 4 2 3
5 10 5 2 3

output:

180
170
650
265
182
173
120
296
192
131

result:

ok 10 lines

Test #2:

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

input:

10
5
1 2 2 5 3
6 4 2 6 3
5
4 4 1 4 3
6 7 2 5 3
5
5 3 4 2 4
5 7 5 2 6
5
1 5 3 5 2
7 7 3 5 2
5
1 3 3 2 2
10 5 3 2 2
5
4 4 4 5 3
4 11 9 5 3
5
5 3 2 1 3
13 5 2 1 5
5
5 4 1 2 5
10 6 1 2 5
5
3 5 3 4 2
5 9 3 5 2
5
1 1 3 2 1
7 3 3 3 1

output:

120
230
144
110
110
289
324
89
140
122

result:

ok 10 lines

Test #3:

score: 0
Accepted
time: 1ms
memory: 4024kb

input:

10
5
3 1 3 4 4
9 1 3 10 4
5
1 1 3 1 1
9 1 3 3 1
5
5 1 2 3 1
74 1 2 3 1
5
2 5 5 3 4
5 6 8 3 4
5
2 1 3 4 5
2 4 6 4 5
5
2 4 2 1 3
2 11 3 2 3
5
1 5 4 4 2
1 14 6 6 2
5
4 1 3 5 1
9 2 4 5 1
5
4 1 2 4 4
6 1 6 4 4
5
3 2 5 3 5
8 8 5 3 5

output:

196
76
140
172
72
80
486
84
65
224

result:

ok 10 lines

Test #4:

score: 0
Accepted
time: 6ms
memory: 4028kb

input:

10
5
676437428 903889545 700650370 965758082 146716866
676437431 903889567 700650370 965758082 146716866
5
517457740 64600397 388618400 783268973 388618400
517457797 64600397 388618400 783268973 388618400
5
971452763 106948541 259878781 537741075 9504353
971452780 106948544 259878781 537741075 95043...

output:

157838571
539867046
711272106
123881231
497944943
9791579
539012259
963879245
315607794
495624077

result:

ok 10 lines

Test #5:

score: 0
Accepted
time: 5ms
memory: 4076kb

input:

10
5
462008700 417744555 925098328 70231697 547596413
462008735 417744555 925098328 70231697 547596413
5
294230630 403894618 294230635 403894620 403894617
294230638 403894620 294230635 403894620 403894617
5
757647830 757647826 757647828 184694646 161891480
757647839 757647827 757647830 184694646 161...

output:

713470735
905154643
458869425
477055327
633375786
349097981
980046476
478461437
573246310
810688575

result:

ok 10 lines

Test #6:

score: -100
Wrong Answer
time: 0ms
memory: 3896kb

input:

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

output:

0
0
0
0
0
0
0
0
0
0

result:

wrong answer 1st lines differ - expected: '8640', found: '0'