結果
問題 | No.391 CODING WAR |
ユーザー | femto |
提出日時 | 2016-07-08 23:38:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 3,000 bytes |
コンパイル時間 | 756 ms |
コンパイル使用メモリ | 72,440 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-13 07:22:45 |
合計ジャッジ時間 | 1,825 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
10,880 KB |
testcase_01 | AC | 17 ms
10,992 KB |
testcase_02 | AC | 19 ms
11,008 KB |
testcase_03 | AC | 19 ms
10,880 KB |
testcase_04 | AC | 19 ms
10,880 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 18 ms
10,880 KB |
testcase_07 | AC | 18 ms
11,008 KB |
testcase_08 | AC | 18 ms
11,008 KB |
testcase_09 | AC | 38 ms
10,880 KB |
testcase_10 | AC | 36 ms
11,008 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 18 ms
10,880 KB |
testcase_13 | AC | 35 ms
10,976 KB |
testcase_14 | AC | 32 ms
10,904 KB |
testcase_15 | AC | 33 ms
10,960 KB |
testcase_16 | AC | 28 ms
10,880 KB |
testcase_17 | AC | 30 ms
10,972 KB |
testcase_18 | AC | 25 ms
10,920 KB |
testcase_19 | AC | 26 ms
10,864 KB |
ソースコード
#include <iostream> #include <vector> #include <cstring> #include <string> #include <algorithm> #include <iomanip> #include <cassert> using namespace std; typedef long long ll; const int mod = 1000000007; // assert mod is prime template<int M> struct Mint { int x; Mint() : x(0) {} Mint(int y) : x(y >= 0 ? y % M : M - (-y) % M) {} Mint &operator += (const Mint &rhs) { if((x += rhs.x) >= M) x -= M; return *this; } Mint &operator -= (const Mint &rhs) { if((x += M - rhs.x) >= M) x -= M; return *this; } Mint &operator *= (const Mint &rhs) { x = 1LL * x*rhs.x % M; return *this; } Mint &operator /= (const Mint &rhs) { x = (1LL * x*rhs.inv().x) % M; return *this; } Mint operator - () const { return Mint(-x); } Mint operator + (const Mint &rhs) const { return Mint(*this) += rhs; } Mint operator - (const Mint &rhs) const { return Mint(*this) -= rhs; } Mint operator * (const Mint &rhs) const { return Mint(*this) *= rhs; } Mint operator / (const Mint &rhs) const { return Mint(*this) /= rhs; } bool operator < (const Mint &rhs) const { return x < rhs.x; } Mint inv() const { signed a = x, b = M, u = 1, v = 0, t; while(b) { t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } return Mint(u); } Mint pow(long long t) const { Mint e = *this, res = 1; for(; t; e *= e, t >>= 1) if(t & 1) res *= e; return res; } }; template <int M> ostream &operator << (ostream &os, const Mint<M> &rhs) { return os << rhs.x; } template <int M> istream &operator >> (istream &is, Mint<M> &rhs) { long long s; is >> s; rhs = Mint<M>(s); return is; }; using mint = Mint<mod>; ll modpow(ll x, ll y, ll m) { if(y == 0) return 1; ll res = modpow(x, y / 2, m); return res * res % m * (y & 1 ? x : 1) % m; } ll modinv(ll x, ll m) { return modpow(x, m - 2, m); } struct Comb { int sz; vector<mint> mfact, mfinv; Comb(int N) : sz(min(N, int(mod) - 1)), mfact(sz + 1), mfinv(sz + 1) { for(int i = 0; i <= sz; i++) mfact[i] = (i == 0 ? 1 : mfact[i - 1] * i); mfinv[sz] = mfact[sz].inv(); for(int i = sz; i >= 1; i--) mfinv[i - 1] = mfinv[i] * i; } mint fact(int n, int& e) { // e に p の指数が入る // Wilson の定理 e = 0; if(n <= sz) return mfact[n]; mint res = fact(n / mod, e); e += n / mod; if(n / mod % 2 != 0) return -res * mfact[n % mod]; return res * mfact[n % mod]; } mint nPr(int n, int r) { int e; return fact(n, e) / fact(n - r, e); } mint nCr(int n, int r) { // Lucus の定理 assert(n <= sz); if(n >= mod) return nCr(n%mod, r%mod) * nCr(n / mod, r / mod); return r > n ? 0 : mfact[n] * mfinv[n - r] * mfinv[r]; } mint nHr(int n, int r) { return r == 0 ? 1 : nCr(n + r - 1, r); } }; int main() { cin.tie(0); ios::sync_with_stdio(false); ll N, M; cin >> N >> M; if(M > N) { cout << 0 << endl; return 0; } Comb C(1000000); mint ans = mint(M).pow(N); for(int i = 1; i < M; i++) { mint m = mint(M - i).pow(N); m *= C.nCr(M, i); if(i % 2) ans -= m; else ans += m; } cout << ans << endl; }