結果
| 問題 | No.645 Count Permutation |
| コンテスト | |
| ユーザー |
yosupot
|
| 提出日時 | 2017-09-12 05:55:48 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,574 bytes |
| 記録 | |
| コンパイル時間 | 1,043 ms |
| コンパイル使用メモリ | 110,340 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-07 16:34:22 |
| 合計ジャッジ時間 | 2,784 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 WA * 25 |
ソースコード
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <algorithm>
#include <numeric>
#include <random>
#include <vector>
#include <array>
#include <bitset>
#include <queue>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <complex>
using namespace std;
using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
constexpr ll TEN(int n) { return (n==0) ? 1 : 10*TEN(n-1); }
template<class T> using V = vector<T>;
template<class T> using VV = V<V<T>>;
template<class T>
T pow(T x, ll n, T r = 1) {
while (n) {
if (n & 1) r *= x;
x *= x;
n >>= 1;
}
return r;
}
template<uint MD>
struct ModInt {
uint v;
ModInt() : v{0} {}
ModInt(ll v) : v{normS(v%MD+MD)} {}
explicit operator bool() const {return v != 0;}
static uint normS(const uint &x) {return (x<MD)?x:x-MD;};
static ModInt make(const uint &x) {ModInt m; m.v = x; return m;}
static ModInt inv(const ModInt &x) {return pow(ModInt(x), MD-2);}
ModInt operator+(const ModInt &r) const {return make(normS(v+r.v));}
ModInt operator-(const ModInt &r) const {return make(normS(v+MD-r.v));}
ModInt operator*(const ModInt &r) const {return make((ull)v*r.v%MD);}
ModInt operator/(const ModInt &r) const {return *this*inv(r);}
ModInt& operator+=(const ModInt &r) {return *this=*this+r;}
ModInt& operator-=(const ModInt &r) {return *this=*this-r;}
ModInt& operator*=(const ModInt &r) {return *this=*this*r;}
ModInt& operator/=(const ModInt &r) {return *this=*this/r;}
};
using Mint = ModInt<TEN(9)+7>;
const int MN = TEN(5) + TEN(3);
Mint fact[MN], iFac[MN];
Mint kaku[MN];
void first() {
fact[0] = Mint(1);
for (int i = 1; i < MN; i++) {
fact[i] = fact[i-1] * i;
}
for (int i = 0; i < MN; i++) {
iFac[i] = Mint(1)/fact[i];
}
kaku[0] = Mint(1);
kaku[1] = Mint(0);
for (int i = 2; i < MN; i++) {
kaku[i] = Mint(i-1) * (kaku[i-2] + kaku[i-1]);
}
}
Mint C(int n, int k) {
if (n < k || n < 0) return Mint(0);
return fact[n] * iFac[k] * iFac[n-k];
}
int main() {
first();
int n; ll l, r;
cin >> n >> l >> r;
Mint ans = 0;
if (l == 0) {
ans += fact[n] - fact[n-1];
}
for (int i = 1; i <= 61; i++) {
ll u = 1LL << i;
if (l <= u && u <= r) {
// cout << "OK " << i << endl;
ans += C(n-1, i-1) * kaku[n-i];
}
}
cout << ans.v << endl;
return 0;
}
yosupot