QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#150839#6333. Festivals in JOI Kingdom 2JCY_100 ✓2420ms4712kbC++172.3kb2023-08-26 13:51:562023-08-26 13:52:07

Judging History

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

  • [2023-08-26 13:52:07]
  • 评测
  • 测评结果:100
  • 用时:2420ms
  • 内存:4712kb
  • [2023-08-26 13:51:56]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
using i128 = __int128;
using u128 = unsigned __int128;
template <typename T>
void chkmax(T &x, const T &y) {
  if (x < y) x = y;
}
template <typename T>
void chkmin(T &x, const T &y) {
  if (y < x) x = y;
}
namespace barrett {
int p;
i128 w;
void init(int _p) {
  p = _p;
  w = -1ull / p;
}
int reduce(ll x) {
  ll t = x - (w * x >> 64) * p;
  return t >= p ? t - p : t;
}
}  // namespace barrett
int mod;
void inc(int &x, int y) { x += y, x >= mod && (x -= mod); }
int mul(int x, int y) { return barrett::reduce((ll)x * y); }
int qpow(int x, int y) {
  int ret = 1;
  for (; y; y >>= 1, x = (ll)x * x % mod)
    if (y & 1) ret = (ll)ret * x % mod;
  return ret;
}
constexpr int MAXN = 2e4 + 10;
int n, f[2][MAXN][3], ext[MAXN * 2][2], fac[MAXN * 2], ifac[MAXN * 2];
int A(int x, int y) { return mul(fac[x], ifac[x - y]); }
int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  cin >> n >> mod;
  barrett::init(mod);
  fac[0] = 1;
  for (int i = 1; i <= n * 2; ++i) fac[i] = (ll)fac[i - 1] * i % mod;
  ifac[n * 2] = qpow(fac[n * 2], mod - 2);
  for (int i = n * 2 - 1; i >= 0; --i) ifac[i] = (ll)ifac[i + 1] * (i + 1) % mod;
  int p = 0;
  f[0][0][2] = 1;
  for (int i = 2; i <= n * 2; ++i) {
    p ^= 1;
    memset(f[p], 0, sizeof(int) * (min(i, n * 2 - i) + 1) * 3);
    int up = min(i - 1, n * 2 - i + 1);
    for (int j = 0; j <= up; ++j) {
      if (f[!p][j][0]) {
        inc(f[p][j + 1][0], f[!p][j][0]);
        inc(f[p][j][1], f[!p][j][0]);
      }
      if (f[!p][j][1]) inc(f[p][j][2], f[!p][j][1]);
      if (f[!p][j][2]) {
        inc(f[p][j + 1][2], f[!p][j][2]);
        if (i + j <= n * 2)
          inc(ext[i + j][1], mul(f[!p][j][2], A(n * 2 - i, j)));
        if (j && i + j - 1 <= n * 2) {
          inc(ext[i + j - 1][0], mul(mul(f[!p][j][2], j), A(n * 2 - i, j - 1)));
        }
      }
    }
    inc(f[p][0][0], ext[i][0]);
    inc(f[p][0][1], ext[i][1]);
  }
  int all = 1;
  for (int i = 1; i <= n * 2; i += 2) all = (ll)all * i % mod;
  cout << (all - f[p][0][1] + mod) % mod << "\n";
  return 0;
}
// g++ festival.cpp -o festival -Wall -Wextra -Wshadow -O2 -std=c++14 -fsanitize=address,undefined

詳細信息

Subtask #1:

score: 5
Accepted

Test #1:

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

input:

1 194903119

output:

0

result:

ok 1 number(s): "0"

Test #2:

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

input:

2 933234047

output:

0

result:

ok 1 number(s): "0"

Test #3:

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

input:

3 277793111

output:

2

result:

ok 1 number(s): "2"

Test #4:

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

input:

4 355321177

output:

28

result:

ok 1 number(s): "28"

Test #5:

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

input:

5 306636893

output:

358

result:

ok 1 number(s): "358"

Subtask #2:

score: 5
Accepted

Dependency #1:

100%
Accepted

Test #6:

score: 5
Accepted
time: 1ms
memory: 3696kb

input:

8 361605653

output:

1236922

result:

ok 1 number(s): "1236922"

Test #7:

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

input:

8 995512643

output:

1236922

result:

ok 1 number(s): "1236922"

Test #8:

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

input:

8 101102801

output:

1236922

result:

ok 1 number(s): "1236922"

Test #9:

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

input:

6 458322727

output:

4894

result:

ok 1 number(s): "4894"

Test #10:

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

input:

7 721691819

output:

73884

result:

ok 1 number(s): "73884"

Test #11:

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

input:

7 370629137

output:

73884

result:

ok 1 number(s): "73884"

Subtask #3:

score: 27
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Test #12:

score: 27
Accepted
time: 1ms
memory: 3636kb

input:

30 779092367

output:

686412377

result:

ok 1 number(s): "686412377"

Test #13:

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

input:

29 963995171

output:

128570082

result:

ok 1 number(s): "128570082"

Test #14:

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

input:

18 666092701

output:

185922458

result:

ok 1 number(s): "185922458"

Test #15:

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

input:

14 671243719

output:

623913899

result:

ok 1 number(s): "623913899"

Subtask #4:

score: 14
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Test #16:

score: 14
Accepted
time: 1ms
memory: 3620kb

input:

300 463478027

output:

89265245

result:

ok 1 number(s): "89265245"

Test #17:

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

input:

296 567610679

output:

406342763

result:

ok 1 number(s): "406342763"

Test #18:

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

input:

297 609090359

output:

128986577

result:

ok 1 number(s): "128986577"

Test #19:

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

input:

48 759569383

output:

635573072

result:

ok 1 number(s): "635573072"

Test #20:

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

input:

99 298873033

output:

285340078

result:

ok 1 number(s): "285340078"

Subtask #5:

score: 36
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Test #21:

score: 36
Accepted
time: 55ms
memory: 3736kb

input:

3000 752129633

output:

33058561

result:

ok 1 number(s): "33058561"

Test #22:

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

input:

2993 491173567

output:

343277625

result:

ok 1 number(s): "343277625"

Test #23:

score: 0
Accepted
time: 55ms
memory: 3788kb

input:

2993 783095563

output:

776085006

result:

ok 1 number(s): "776085006"

Test #24:

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

input:

327 399783431

output:

163535283

result:

ok 1 number(s): "163535283"

Test #25:

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

input:

1233 857060207

output:

422139845

result:

ok 1 number(s): "422139845"

Test #26:

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

input:

1114 600227447

output:

598509129

result:

ok 1 number(s): "598509129"

Subtask #6:

score: 13
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Dependency #5:

100%
Accepted

Test #27:

score: 13
Accepted
time: 2420ms
memory: 4680kb

input:

20000 221054167

output:

39809956

result:

ok 1 number(s): "39809956"

Test #28:

score: 0
Accepted
time: 2414ms
memory: 4680kb

input:

19997 823974001

output:

267537750

result:

ok 1 number(s): "267537750"

Test #29:

score: 0
Accepted
time: 2418ms
memory: 4712kb

input:

19991 501689843

output:

16527909

result:

ok 1 number(s): "16527909"

Test #30:

score: 0
Accepted
time: 1246ms
memory: 4396kb

input:

14344 925452091

output:

212324779

result:

ok 1 number(s): "212324779"

Test #31:

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

input:

6098 507350869

output:

310480789

result:

ok 1 number(s): "310480789"

Test #32:

score: 0
Accepted
time: 190ms
memory: 4004kb

input:

5564 406069759

output:

105694337

result:

ok 1 number(s): "105694337"

Extra Test:

score: 0
Extra Test Passed