結果

問題 No.645 Count Permutation
ユーザー rickythetarickytheta
提出日時 2018-02-02 22:53:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,983 bytes
コンパイル時間 1,455 ms
コンパイル使用メモリ 168,812 KB
実行使用メモリ 55,064 KB
最終ジャッジ日時 2024-06-10 01:29:40
合計ジャッジ時間 4,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
6,944 KB
testcase_01 AC 20 ms
6,940 KB
testcase_02 AC 21 ms
7,324 KB
testcase_03 AC 19 ms
6,944 KB
testcase_04 AC 20 ms
6,944 KB
testcase_05 AC 19 ms
6,944 KB
testcase_06 AC 20 ms
6,940 KB
testcase_07 AC 20 ms
6,944 KB
testcase_08 AC 20 ms
6,944 KB
testcase_09 AC 20 ms
7,712 KB
testcase_10 AC 20 ms
6,944 KB
testcase_11 AC 25 ms
12,048 KB
testcase_12 AC 23 ms
10,136 KB
testcase_13 AC 24 ms
9,876 KB
testcase_14 AC 21 ms
6,944 KB
testcase_15 AC 58 ms
28,436 KB
testcase_16 AC 51 ms
24,344 KB
testcase_17 AC 114 ms
53,140 KB
testcase_18 AC 46 ms
22,420 KB
testcase_19 AC 113 ms
55,064 KB
testcase_20 AC 118 ms
55,056 KB
testcase_21 AC 89 ms
44,824 KB
testcase_22 AC 19 ms
6,944 KB
testcase_23 AC 20 ms
6,940 KB
testcase_24 AC 117 ms
54,936 KB
testcase_25 AC 66 ms
32,536 KB
testcase_26 AC 98 ms
46,864 KB
testcase_27 AC 58 ms
28,312 KB
testcase_28 AC 47 ms
22,292 KB
testcase_29 AC 87 ms
42,772 KB
testcase_30 AC 85 ms
42,772 KB
testcase_31 AC 92 ms
46,868 KB
testcase_32 AC 41 ms
18,196 KB
testcase_33 AC 40 ms
18,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

#define CHMIN(a,b) a=min((a),(b))
#define CHMAX(a,b) a=max((a),(b))

// mod
const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

int n;
ll l,r;
ll fact[125252];
ll ifact[125252];
ll modinv(ll a){
  ll r=1;
  ll b=MOD-2;
  while(b){
    if(b&1)r=r*a%MOD;
    a=a*a%MOD;
    b>>=1;
  }
  return r;
}

ll dp[125252][61];

int main(){
  cin>>n>>l>>r;
  
  if(false){
    map<vi,int> cnt;
    map<vi,vector<vi>> lst;
    vi v(n);
    REP(i,n)v[i] = i+1;
    do{
      vi x = v;
      REP(i,n-1){
        if(x[i] > x[i+1])swap(x[i],x[i+1]);
      }
      cnt[x]++;
      lst[x].push_back(v);
    }while(next_permutation(ALL(v)));
    int ans = 0;
    for(auto P : cnt){
      vi V = P.first;
      int cnt = P.second;
      printf("%d\n",cnt);
      if(l<=cnt && cnt<=r){
        ans++;
        DEBUG_VEC(V);
      }
    }
    printf("%d\n",ans);
  }

  fact[0] = 1;
  FOR(i,1,125252)fact[i]=fact[i-1]*i%MOD;
  REP(i,125252)ifact[i]=modinv(fact[i]);
  
  // dp
  dp[0][0] = 1;
  FOR(k,1,60){
    ll sum = 0;
    FOR(l,1,n+1){
      sum += dp[l-1][k-1] * ifact[l-1] % MOD;
      sum %= MOD;
      dp[l][k] = fact[l-1] * sum % MOD;
    }
  }
  // calc
  ll ans = 0;
  // cnt == 0
  if(l==0){
    ans = fact[n-1] * (n-1) % MOD;
  }
  // cnt >= 2
  int x = 1;
  while((1ll<<x) <= r){
    if((1ll<<x) < l){
      x++;continue;
    }
    ans += dp[n-1][x] % MOD;
    ans %= MOD;
    x++;
  }
  printf("%lld\n",ans);
  return 0;
}
0