結果

問題 No.834 Random Walk Trip
ユーザー 0w10w1
提出日時 2019-08-02 01:28:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 202,372 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-07-05 08:02:27
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 30 ms
5,376 KB
testcase_19 AC 170 ms
7,168 KB
testcase_20 AC 29 ms
5,376 KB
testcase_21 AC 158 ms
7,040 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 129 ms
6,272 KB
testcase_24 AC 9 ms
5,376 KB
testcase_25 AC 162 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MOD = 1e9 + 7;

int ipow(int v, int n, int m = MOD) {
  int r = 1;
  while (n) {
    if (n & 1) r = 1LL * r * v % m;
    v = 1LL * v * v % m;
    n >>= 1;
  }
  return r;
}

int inv(int v, int m = MOD) {
  return ipow(v, m - 2, m);
}

int main() {
  ios::sync_with_stdio(false);

  int N, M;
  cin >> N >> M;

  if (N == 1) {
    cout << 1 << endl;
    return 0;
  }

  vector<int> C_m(M + 1);
  C_m[0] = 1;
  for (int i = 0; i < M; ++i) {
    C_m[i + 1] = 1LL * C_m[i] * (M - i) % MOD * inv(i + 1) % MOD;
  } // m!/i!(m-i)! -> (m-i)/(i+1) * m!/i!(m-i)!

  int ans = 0;
  for (int i = 0; i < M + 1; ++i) {
    int x = i - (M - i);
    if (x < 0) {
      x = -x + 1;
    }
    if (x % (2 * N) < 2) {
      (ans += C_m[i]) %= MOD;
    }
  }

  cout << ans << endl;

  return 0;
}
0