結果

問題 No.645 Count Permutation
ユーザー 193s193s
提出日時 2018-02-03 12:24:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,212 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 93,952 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-06-11 15:20:00
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 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 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 10 ms
5,632 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 8 ms
5,504 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 36 ms
14,080 KB
testcase_16 AC 32 ms
12,288 KB
testcase_17 AC 74 ms
25,984 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 80 ms
26,624 KB
testcase_20 AC 77 ms
26,752 KB
testcase_21 AC 61 ms
21,760 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 78 ms
26,752 KB
testcase_25 AC 42 ms
15,872 KB
testcase_26 AC 62 ms
22,912 KB
testcase_27 AC 35 ms
13,952 KB
testcase_28 AC 25 ms
10,496 KB
testcase_29 AC 59 ms
21,248 KB
testcase_30 AC 59 ms
21,504 KB
testcase_31 AC 64 ms
23,264 KB
testcase_32 AC 21 ms
9,088 KB
testcase_33 AC 20 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
#include <cassert>
#include <bitset>
using namespace std;

typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define index(xs, x) (int)(lower_bound(all(xs), x) - xs.begin())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007
inline void add(int &x, int v) { x += v; if (x >= MOD) x -= MOD; }

int N;
long long L, R;
int dp[100001][60];
signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  cin >> N >> L >> R;
  dp[N-1][0] = 1;
  for (int x=N-1; x>=1; x--) {
    rep(j, 60) {
      if (dp[x][j] == 0) continue;
      if (j+1<60) add(dp[x-1][j+1], dp[x][j]);
      add(dp[x-1][j], (1LL*(N-1-x)*dp[x][j])%MOD);
    }
  }
  int s = 0;
  rep(b, 60) {
    if (L <= (1LL<<b) && (1LL<<b) <= R) add(s, dp[0][b]);
  }
  if (L == 0) {
    int a = N-1;
    for (int i=1; i<=N-1; i++) a = (1LL*a*i) % MOD;
    add(s, a);
  }
  cout << s << "\n";
  return 0;
}
0