QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#823138#8428. Partition into TeamsRong7AC ✓13ms24648kbC++171.8kb2024-12-20 19:43:282024-12-20 19:43:29

Judging History

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

  • [2024-12-20 19:43:29]
  • 评测
  • 测评结果:AC
  • 用时:13ms
  • 内存:24648kb
  • [2024-12-20 19:43:28]
  • 提交

answer

// by saubguiu a normal one.

#include <bits/stdc++.h>
using namespace std;

#define inline __inline__ __attribute__ ((always_inline))

#define int long long

namespace io {
    int pos;
    inline int read (int &p = pos){
        static int v; static char c;
        p = 0, v = 1, c = getchar ();
        while (! isdigit (c)){
            if (c == '-') v = - 1;
            c = getchar ();
        }
        while (isdigit (c)){
            p = (p << 1) + (p << 3) + (c - 48);
            c = getchar ();
        }
        return v == 1 ? p : - p;
    }
    inline void write (int x){
        static int sta[65], top; top = 0;
        if (x < 0) putchar ('-'), x = - x;
        do {
            sta[++ top] = x % 10; 
            x /= 10;
        } while (x);
        while (top) putchar (sta[top --] + 48);
    }
}

const int N = 1e6;
int n, mod, f[N + 5];
int inv[N + 5], inj[N + 5], jc[N + 5];

inline int C (int a, int b){ return jc[a] * inj[b] % mod * inj[a - b] % mod; }

inline int power (int a, int p){
    static int res; res = 1;
    while (p > 0){
        if (p & 1) res = res * a % mod;
        a = a * a % mod;
        p >>= 1;
    }
    return res;
}

signed main (){
    io::read (n), io::read (mod);
    inv[1] = inj[0] = inj[1] = jc[0] = jc[1] = 1;
    for (int i = 2;i < mod;++ i){
        inv[i] = inv[i - mod % i] * (mod / i + 1) % mod;
        inj[i] = inj[i - 1] * inv[i] % mod;
        jc[i] = jc[i - 1] * i % mod;
    }
    int ans = 1;
    for (int u = n, v, res;u;u /= mod){
        v = u % mod; res = 0;
        for (int i = 0;(i << 1) <= v;++ i)
            res = res + C (v, i << 1) * C (i << 1, i) % mod;
        ans = res % mod * ans % mod;
    }
    io::write ((power (3, n) - ans + mod) % mod * inv[2] % mod), putchar ('\n');

    return 0;
}

詳細信息

Test #1:

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

input:

5 5

output:

1

result:

ok 1 number(s): "1"

Test #2:

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

input:

5 7

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

789 97

output:

53

result:

ok 1 number(s): "53"

Test #4:

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

input:

98 23

output:

10

result:

ok 1 number(s): "10"

Test #5:

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

input:

398 7

output:

4

result:

ok 1 number(s): "4"

Test #6:

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

input:

272 31

output:

18

result:

ok 1 number(s): "18"

Test #7:

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

input:

920 199

output:

39

result:

ok 1 number(s): "39"

Test #8:

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

input:

390 5167

output:

1236

result:

ok 1 number(s): "1236"

Test #9:

score: 0
Accepted
time: 2ms
memory: 7956kb

input:

445 24337

output:

4546

result:

ok 1 number(s): "4546"

Test #10:

score: 0
Accepted
time: 7ms
memory: 23672kb

input:

28 586501

output:

269032

result:

ok 1 number(s): "269032"

Test #11:

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

input:

304 5

output:

0

result:

ok 1 number(s): "0"

Test #12:

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

input:

7158 41

output:

16

result:

ok 1 number(s): "16"

Test #13:

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

input:

8487 331

output:

148

result:

ok 1 number(s): "148"

Test #14:

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

input:

501 6763

output:

363

result:

ok 1 number(s): "363"

Test #15:

score: 0
Accepted
time: 2ms
memory: 8188kb

input:

3011 61129

output:

49319

result:

ok 1 number(s): "49319"

Test #16:

score: 0
Accepted
time: 7ms
memory: 16572kb

input:

7266 358159

output:

7643

result:

ok 1 number(s): "7643"

Test #17:

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

input:

360860 7

output:

1

result:

ok 1 number(s): "1"

Test #18:

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

input:

154939 19

output:

8

result:

ok 1 number(s): "8"

Test #19:

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

input:

813268 47

output:

40

result:

ok 1 number(s): "40"

Test #20:

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

input:

965601 1531

output:

1147

result:

ok 1 number(s): "1147"

Test #21:

score: 0
Accepted
time: 3ms
memory: 10368kb

input:

689332 78079

output:

17208

result:

ok 1 number(s): "17208"

Test #22:

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

input:

287719 34369

output:

15373

result:

ok 1 number(s): "15373"

Test #23:

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

input:

439237583 7

output:

6

result:

ok 1 number(s): "6"

Test #24:

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

input:

319142531 79

output:

21

result:

ok 1 number(s): "21"

Test #25:

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

input:

592330255 631

output:

530

result:

ok 1 number(s): "530"

Test #26:

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

input:

164278463 4517

output:

3038

result:

ok 1 number(s): "3038"

Test #27:

score: 0
Accepted
time: 3ms
memory: 12200kb

input:

753671285 65371

output:

22369

result:

ok 1 number(s): "22369"

Test #28:

score: 0
Accepted
time: 13ms
memory: 24648kb

input:

289665297 663127

output:

168503

result:

ok 1 number(s): "168503"

Test #29:

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

input:

350585676619 7

output:

5

result:

ok 1 number(s): "5"

Test #30:

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

input:

4283693890775 31

output:

1

result:

ok 1 number(s): "1"

Test #31:

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

input:

1234727503131 151

output:

67

result:

ok 1 number(s): "67"

Test #32:

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

input:

9399186742989 1327

output:

678

result:

ok 1 number(s): "678"

Test #33:

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

input:

1409645481800 8719

output:

1939

result:

ok 1 number(s): "1939"

Test #34:

score: 0
Accepted
time: 8ms
memory: 20112kb

input:

3782178721166 552859

output:

458256

result:

ok 1 number(s): "458256"

Test #35:

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

input:

827235816874722972 5

output:

2

result:

ok 1 number(s): "2"

Test #36:

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

input:

648249960855836992 61

output:

56

result:

ok 1 number(s): "56"

Test #37:

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

input:

467138518199434341 563

output:

202

result:

ok 1 number(s): "202"

Test #38:

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

input:

616207494477524619 653

output:

95

result:

ok 1 number(s): "95"

Test #39:

score: 0
Accepted
time: 2ms
memory: 9928kb

input:

129689263663821851 34403

output:

30422

result:

ok 1 number(s): "30422"

Test #40:

score: 0
Accepted
time: 8ms
memory: 19904kb

input:

605206340470214709 479971

output:

381982

result:

ok 1 number(s): "381982"