0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

2186. [Sdoi2008]沙拉公主的困惑

https://hydro.ac/d/bzoj/record/63a45b69cf75a716a1673402
This commit is contained in:
Baoshuo Ren 2022-12-22 21:28:16 +08:00
parent 508ed89e83
commit 955281f7cb
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
17 changed files with 118 additions and 0 deletions

70
BZOJ/2186/2186.cpp Normal file
View File

@ -0,0 +1,70 @@
#include <iostream>
#include <algorithm>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e7 + 5;
int t, mod, p, primes[N], fac[N], fac_phi[N];
bool not_prime[N];
int binpow(int a, int b) {
int res = 1;
while (b) {
if (b & 1) res = static_cast<long long>(res) * a % mod;
a = static_cast<long long>(a) * a % mod;
b >>= 1;
}
return res;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> t >> mod;
for (int i = 2; i < N; i++) {
if (!not_prime[i]) primes[++p] = i;
for (int j = 1; j <= p && i * primes[j] < N; j++) {
not_prime[i * primes[j]] = true;
if (i % primes[j] == 0) break;
}
}
fac[0] = 1;
for (int i = 1; i < N; i++) {
if (i % mod) {
fac[i] = static_cast<long long>(fac[i - 1]) * i % mod;
} else {
fac[i] = fac[i - 1];
}
}
fac_phi[1] = 1;
for (int i = 2; i < N; i++) {
if (not_prime[i]) {
fac_phi[i] = static_cast<long long>(fac_phi[i - 1]) * i % mod;
} else {
fac_phi[i] = static_cast<long long>(fac_phi[i - 1]) * (i - 1) % mod;
}
}
while (t--) {
int n, m;
cin >> n >> m;
cout << (n / mod > m / mod ? 0 : static_cast<long long>(fac[n]) * fac_phi[m] % mod * binpow(fac[m], mod - 2) % mod) << endl;
}
return 0;
}

BIN
BZOJ/2186/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2186/data/8.out (Stored with Git LFS) Normal file

Binary file not shown.