QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#805049#1245. Three ballspeimudaWA 25ms58132kbC++112.3kb2024-12-08 12:19:472024-12-08 12:19:47

Judging History

This is the latest submission verdict.

  • [2024-12-08 12:19:47]
  • Judged
  • Verdict: WA
  • Time: 25ms
  • Memory: 58132kb
  • [2024-12-08 12:19:47]
  • Submitted

answer

#include<set>
#include<map>
#include<queue>
#include<vector>
#include<algorithm>
#include<bits/stdc++.h>
#define pr pair
#define f first
#define s second
#define ll long long
#define mp make_pair
#define pll pr<ll,ll>
#define pii pr<int,int>
#define piii pr<int,pii>
using namespace std;
const ll m=1e9+7;
ll jc[10004];
ll jy[10004];
int pf[20004][10004];
ll fd[10004],fa[10004],fb[10004],fc[10004];
ll C(int a,int b)
{
	return jc[a]*jy[b]%m*jy[a-b]%m;
}
ll pw(ll a,ll b=m-2)
{
	ll r=1;
	while(b)
	{
		if(b&1) r=r*a%m;
		a=a*a%m;
		b>>=1;
	}
	return r;
}
int n;
ll calc(int a,int b,string sa,string sb)
{
	int td=0,ta=0;
	for(int i=0;i<n;i++)
	{
		int fa=sa[i]-'0',fb=sb[i]-'0';
		if(fb>=1) fa=1-fa,fb=1-fb;
		if(fa) ta++;
		else td++;
	}
	for(int i=0;i<=ta;i++) fa[i]=C(ta,i);
	for(int i=0;i<=td;i++) fd[i]=C(td,i);
	for(int i=1;i<=td;i++) fd[i]=(fd[i-1]+fd[i])%m;
	ll rt=0;
	for(int i=0;i<=ta;i++)
	{
		int g=min(a-ta+i,b-i);
		if(g<0) continue;
		rt+=fa[i]*fd[g]%m;
	}
	return rt%m;
}
int main()
{
	jc[0]=1;
	for(int i=1;i<=10000;i++) jc[i]=jc[i-1]*i%m;
	jy[10000]=pw(jc[10000]);
	for(int i=9999;i>=0;i--) jy[i]=jy[i+1]*(i+1)%m;
	ios_base::sync_with_stdio(0);
	cin>>n;
	int a,b,c;
	string sa,sb,sc;
	cin>>a>>sa>>b>>sb>>c>>sc;
	ll ans=0;
	for(int i=0;i<=a;i++) ans+=C(n,i);
	for(int i=0;i<=b;i++) ans+=C(n,i);
	for(int i=0;i<=c;i++) ans+=C(n,i);
	int td=0,ta=0,tb=0,tc=0;
	for(int i=0;i<n;i++)
	{
		int fa=sa[i]-'0',fb=sb[i]-'0',fc=sc[i]-'0';
		if(fa+fb+fc>=2) fa=1-fa,fb=1-fb,fc=1-fc;
		if(fa) ta++;
		else if(fb) tb++;
		else if(fc) tc++;
		else td++;
	}
	cerr<<"F "<<ans<<endl;
	cerr<<"G "<<td<<' '<<ta<<' '<<tb<<' '<<tc<<endl;
	for(int i=0;i<=ta;i++) fa[i]=C(ta,i);
	for(int i=0;i<=tb;i++) fb[i]=C(tb,i);
	for(int i=0;i<=tc;i++) fc[i]=C(tc,i);
	for(int i=0;i<=td;i++) fd[i]=C(td,i);
	for(int i=0;i<=tc;i++) for(int j=0;j<=td;j++)
	{
		pf[n+j-i][i+j]=fc[i]*fd[j]%m;
	}
	for(int i=1;i<=n*2;i++) for(int j=0;j<=n;j++) pf[i][j]=(pf[i][j]+pf[i-1][j])%m;
	for(int i=0;i<=n*2;i++) for(int j=1;j<=n;j++) pf[i][j]=(pf[i][j]+pf[i][j-1])%m;
	for(int i=0;i<=ta;i++) for(int j=0;j<=tb;j++)
	{
		int ab=min(a-ta+i-j,b-tb+j-i),gc=c-tc-i-j+n;
		if(ab<0||gc<0) continue;
		ans+=fa[i]*fb[j]%m*pf[gc][ab]%m;
	}
	cerr<<"F "<<ans<<endl;
	ans+=m-calc(a,b,sa,sb);
	ans+=m-calc(b,c,sb,sc);
	ans+=m-calc(c,a,sc,sa);
	cout<<ans%m<<endl;
	return 0;
}

详细

Test #1:

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

input:

3
1 000
1 100
0 111

output:

7

result:

ok answer is '7'

Test #2:

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

input:

5
2 10110
0 11010
1 00000

output:

19

result:

ok answer is '19'

Test #3:

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

input:

3
2 011
0 100
3 010

output:

8

result:

ok answer is '8'

Test #4:

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

input:

5
1 11010
3 00001
4 01011

output:

32

result:

ok answer is '32'

Test #5:

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

input:

1
1 1
1 1
1 0

output:

2

result:

ok answer is '2'

Test #6:

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

input:

1
1 0
0 1
1 0

output:

2

result:

ok answer is '2'

Test #7:

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

input:

10
4 0001001011
6 0000011100
4 1011000101

output:

969

result:

ok answer is '969'

Test #8:

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

input:

15
4 110001100010010
11 101101011011001
0 001110001001110

output:

32227

result:

ok answer is '32227'

Test #9:

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

input:

15
9 011001010111000
7 101000010111010
9 010000110010010

output:

31656

result:

ok answer is '31656'

Test #10:

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

input:

15
15 011010001011011
6 101000010001001
6 000010111110010

output:

32768

result:

ok answer is '32768'

Test #11:

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

input:

15
0 100010010001000
0 011100000001011
0 100000100111111

output:

3

result:

ok answer is '3'

Test #12:

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

input:

14
0 11101010011000
0 11101010011000
0 11101010011000

output:

1

result:

ok answer is '1'

Test #13:

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

input:

37
28 1001101111100111110011111100101110110
32 1001011110011111110100111110100110010
21 1001000111000000110011000001100011111

output:

438952513

result:

ok answer is '438952513'

Test #14:

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

input:

37
21 0101010101010101010101010101010101010
20 0011001100110011001100110011001100110
22 0000111100001111000011110000111100001

output:

16781879

result:

ok answer is '16781879'

Test #15:

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

input:

36
14 001110110001000000000111001011111101
13 100000010110111010011100111111010100
12 011111111010110111110010110011100100

output:

765072297

result:

ok answer is '765072297'

Test #16:

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

input:

1500
653 101110010010011101100010011000000111010100100001101000000010010011001011101111100111100101000111001110000011111110011010101011111101001011011001100010100100101100100101000010001101011111100001010000101000100110110001011011001111100001010110101000000111010111001011110011110100110101111111110...

output:

979972096

result:

ok answer is '979972096'

Test #17:

score: -100
Wrong Answer
time: 25ms
memory: 56260kb

input:

1500
1207 01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101...

output:

251336333

result:

wrong answer expected '247669529', found '251336333'