QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#840060#8728. Tablicarqoi031100 ✓22ms36512kbC++201.5kb2025-01-02 15:06:152025-01-02 15:06:16

Judging History

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

  • [2025-01-02 15:06:16]
  • 评测
  • 测评结果:100
  • 用时:22ms
  • 内存:36512kb
  • [2025-01-02 15:06:15]
  • 提交

answer

#include<stdio.h>
#include<algorithm>
typedef unsigned int uint;
typedef unsigned long long ull;
constexpr uint mod{1000000007};
constexpr uint power(uint x,uint y) {
    uint s{1};
    while(y>0) {
        if(y&1) {
            s=ull(s)*x%mod;
        }
        x=ull(x)*x%mod;
        y>>=1;
    }
    return s;
}
constexpr uint plus(const uint &x,const uint &y) {
    if(x+y>=mod) {
        return x+y-mod;
    }
    return x+y;
}
constexpr uint minus(const uint &x,const uint &y) {
    if(x<y) {
        return x-y+mod;
    }
    return x-y;
}
constexpr int N{3000};
uint fac[(N<<1)+5];
uint ipw2[(N<<1)+5];
uint C[N+5][N+5];
int main() {
    int n,m;
    scanf("%d%d",&n,&m);
    if(n>m) {
        std::swap(n,m);
    }
    fac[0]=1;
    for(int i=1;i<=n<<1;i++) {
        fac[i]=ull(fac[i-1])*i%mod;
    }
    ipw2[0]=1;
    for(int i=1;i<=n+m;i++) {
        ipw2[i]=ull(ipw2[i-1])*power(2,mod-2)%mod;
    }
    C[0][0]=1;
    for(int i=1;i<=m;i++) {
        C[i][0]=C[i][i]=1;
        for(int j=1;j<i;j++) {
            C[i][j]=plus(C[i-1][j-1],C[i-1][j]);
        }
    }
    const auto calc([&](const int &n,const int &m)->uint {
        uint res{0};
        for(int i=m;i<=n<<1;i++) {
            res=(res+ull(fac[i])*C[n][i-n]%mod*C[m][i-m]%mod*ipw2[(i-m)+(i-n)])%mod;
        }
        return res;
    });
    uint ans{0};
    for(int i=0;i<=n;i++) {
        ans=(ans+ull(i&1?mod-fac[i]:fac[i])*C[n][i]%mod*C[m][i]%mod*calc(n-i,m-i)%mod*ipw2[i])%mod;
    }
    printf("%u\n",ans);
    return 0;
}

详细

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 0ms
memory: 1608kb

input:

5 6

output:

456750

result:

ok 1 number(s): "456750"

Test #2:

score: 10
Accepted
time: 0ms
memory: 1560kb

input:

6 6

output:

5464710

result:

ok 1 number(s): "5464710"

Test #3:

score: 10
Accepted
time: 0ms
memory: 1620kb

input:

3 5

output:

270

result:

ok 1 number(s): "270"

Test #4:

score: 10
Accepted
time: 0ms
memory: 1628kb

input:

3 6

output:

90

result:

ok 1 number(s): "90"

Test #5:

score: 10
Accepted
time: 0ms
memory: 1560kb

input:

4 6

output:

14580

result:

ok 1 number(s): "14580"

Test #6:

score: 10
Accepted
time: 0ms
memory: 1608kb

input:

3 4

output:

270

result:

ok 1 number(s): "270"

Subtask #2:

score: 18
Accepted

Dependency #1:

100%
Accepted

Test #7:

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

input:

50 49

output:

750700714

result:

ok 1 number(s): "750700714"

Test #8:

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

input:

50 50

output:

630532893

result:

ok 1 number(s): "630532893"

Test #9:

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

input:

41 34

output:

800856205

result:

ok 1 number(s): "800856205"

Test #10:

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

input:

39 41

output:

541550932

result:

ok 1 number(s): "541550932"

Test #11:

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

input:

38 46

output:

651393374

result:

ok 1 number(s): "651393374"

Test #12:

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

input:

37 39

output:

746919932

result:

ok 1 number(s): "746919932"

Test #13:

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

input:

30 50

output:

214086425

result:

ok 1 number(s): "214086425"

Test #14:

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

input:

50 41

output:

193351204

result:

ok 1 number(s): "193351204"

Test #15:

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

input:

44 32

output:

63855946

result:

ok 1 number(s): "63855946"

Test #16:

score: 18
Accepted
time: 1ms
memory: 5848kb

input:

45 42

output:

266239299

result:

ok 1 number(s): "266239299"

Subtask #3:

score: 31
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Test #17:

score: 31
Accepted
time: 0ms
memory: 4364kb

input:

199 200

output:

841552647

result:

ok 1 number(s): "841552647"

Test #18:

score: 31
Accepted
time: 1ms
memory: 4396kb

input:

200 200

output:

157842226

result:

ok 1 number(s): "157842226"

Test #19:

score: 31
Accepted
time: 0ms
memory: 3908kb

input:

156 199

output:

216453917

result:

ok 1 number(s): "216453917"

Test #20:

score: 31
Accepted
time: 1ms
memory: 4100kb

input:

161 199

output:

539960909

result:

ok 1 number(s): "539960909"

Test #21:

score: 31
Accepted
time: 1ms
memory: 4144kb

input:

194 160

output:

764024671

result:

ok 1 number(s): "764024671"

Test #22:

score: 31
Accepted
time: 1ms
memory: 4252kb

input:

184 195

output:

117763744

result:

ok 1 number(s): "117763744"

Test #23:

score: 31
Accepted
time: 0ms
memory: 3688kb

input:

152 174

output:

350941677

result:

ok 1 number(s): "350941677"

Test #24:

score: 31
Accepted
time: 1ms
memory: 5732kb

input:

195 186

output:

130526660

result:

ok 1 number(s): "130526660"

Test #25:

score: 31
Accepted
time: 0ms
memory: 4232kb

input:

173 159

output:

754934766

result:

ok 1 number(s): "754934766"

Test #26:

score: 31
Accepted
time: 0ms
memory: 4380kb

input:

194 170

output:

956364877

result:

ok 1 number(s): "956364877"

Subtask #4:

score: 41
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Test #27:

score: 41
Accepted
time: 17ms
memory: 36016kb

input:

3000 2999

output:

5195706

result:

ok 1 number(s): "5195706"

Test #28:

score: 41
Accepted
time: 17ms
memory: 35832kb

input:

3000 3000

output:

224347336

result:

ok 1 number(s): "224347336"

Test #29:

score: 41
Accepted
time: 22ms
memory: 35068kb

input:

2854 2864

output:

513408195

result:

ok 1 number(s): "513408195"

Test #30:

score: 41
Accepted
time: 14ms
memory: 34932kb

input:

2887 2803

output:

58832696

result:

ok 1 number(s): "58832696"

Test #31:

score: 41
Accepted
time: 13ms
memory: 35464kb

input:

2800 2925

output:

804387597

result:

ok 1 number(s): "804387597"

Test #32:

score: 41
Accepted
time: 22ms
memory: 34752kb

input:

2842 2813

output:

971828715

result:

ok 1 number(s): "971828715"

Test #33:

score: 41
Accepted
time: 17ms
memory: 35744kb

input:

2808 2972

output:

329457042

result:

ok 1 number(s): "329457042"

Test #34:

score: 41
Accepted
time: 11ms
memory: 36512kb

input:

2821 2853

output:

81282690

result:

ok 1 number(s): "81282690"

Test #35:

score: 41
Accepted
time: 22ms
memory: 36496kb

input:

2875 2956

output:

105351485

result:

ok 1 number(s): "105351485"

Test #36:

score: 41
Accepted
time: 18ms
memory: 35044kb

input:

2879 2852

output:

672034506

result:

ok 1 number(s): "672034506"

Extra Test:

score: 0
Extra Test Passed