結果
問題 | No.391 CODING WAR |
ユーザー | kimiyuki |
提出日時 | 2016-07-08 23:07:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 1,516 bytes |
コンパイル時間 | 676 ms |
コンパイル使用メモリ | 72,136 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 06:34:54 |
合計ジャッジ時間 | 1,515 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 35 ms
6,820 KB |
testcase_10 | AC | 33 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 31 ms
6,820 KB |
testcase_14 | AC | 25 ms
6,816 KB |
testcase_15 | AC | 28 ms
6,816 KB |
testcase_16 | AC | 17 ms
6,816 KB |
testcase_17 | AC | 19 ms
6,820 KB |
testcase_18 | AC | 14 ms
6,820 KB |
testcase_19 | AC | 15 ms
6,820 KB |
ソースコード
#include <cstdio> #include <vector> #include <algorithm> #include <array> #include <set> #include <map> #include <queue> #include <tuple> #include <unordered_set> #include <unordered_map> #include <functional> #include <cassert> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i)) typedef long long ll; using namespace std; const ll mod = 1e9+7; ll powi(ll x, ll y, ll p) { assert (y >= 0); x = (x % p + p) % p; ll z = 1; for (ll i = 1; i <= y; i <<= 1) { if (y & i) z = z * x % p; x = x * x % p; } return z; } ll inv(ll x, ll p) { assert ((x % p + p) % p != 0); return powi(x, p-2, p); } ll choose(ll n, ll r) { // O(n) at first time, otherwise O(1) static vector<ll> fact(1,1); static vector<ll> ifact(1,1); if (fact.size() <= n) { int l = fact.size(); fact.resize( n + 1); ifact.resize(n + 1); repeat_from (i,l,n+1) { fact[i] = fact[i-1] * i % mod; ifact[i] = inv(fact[i], mod); } } r = min(r, n - r); return fact[n] * ifact[n-r] % mod * ifact[r] % mod; } int main() { ll n, m; scanf("%lld%lld", &n, &m); if (n < m) { printf("0\n"); } else { ll ans = 0; repeat (i,m) { ans += (i % 2 ? -1 : 1) * powi(m-i, n, mod) * choose(m, i) % mod; ans %= mod; } ans = (ans % mod + mod) % mod; printf("%lld\n", ans); } return 0; }