結果
問題 | No.117 組み合わせの数 |
ユーザー | 👑 emthrm |
提出日時 | 2019-04-13 15:56:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 131 ms / 5,000 ms |
コード長 | 2,015 bytes |
コンパイル時間 | 971 ms |
コンパイル使用メモリ | 80,272 KB |
実行使用メモリ | 34,304 KB |
最終ジャッジ日時 | 2024-09-15 11:08:47 |
合計ジャッジ時間 | 1,785 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) const int MOD = 1000000007; // 998244353; /*-------------------------------------------------*/ struct Combinatorics { Combinatorics(int MAX = 5000000, long long mod_ = MOD) : mod(mod_) { MAX <<= 1; fact.resize(MAX + 1); fact_inv.resize(MAX + 1); fact[0] = 1; FOR(i, 1, MAX + 1) fact[i] = fact[i - 1] * i % mod; fact_inv[MAX] = mod_inv(fact[MAX]); for (int i = MAX; i > 0; --i) fact_inv[i - 1] = fact_inv[i] * i % mod; } inline long long nCk(int n, int k) { if (n < 0 || n < k || k < 0) return 0; return fact[n] * fact_inv[k] % mod * fact_inv[n - k] % mod; } inline long long nPk(int n, int k) { if (n < 0 || n < k || k < 0) return 0; return fact[n] * fact_inv[n - k] % mod; } inline long long nHk(int n, int k) { if (n < 0 || k < 0) return 0; return (k == 0 ? 1 % mod : nCk(n + k - 1, k)); } private: long long mod; vector<long long> fact, fact_inv; long long mod_inv(long long a, long long mod = MOD) { a %= mod; if (__gcd(a, mod) != 1) return -1; long long b = mod, x = 1, y = 0; while (b > 0) { long long tmp = a / b; a -= tmp * b; swap(a, b); x -= tmp * y; swap(x, y); } x %= mod; if (x < 0) x += mod; return x; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); // freopen("input.txt", "r", stdin); Combinatorics com(1000000); int t; cin >> t; while (t--) { string s; cin >> s; string n = ""; int idx = 2; for (; ; ++idx) { char c = s[idx]; if (c == ',') break; n += c; } string k = s.substr(idx + 1); if (s[0] == 'C') cout << com.nCk(stoi(n), stoi(k)); else if (s[0] == 'P') cout << com.nPk(stoi(n), stoi(k)); else cout << com.nHk(stoi(n), stoi(k)); cout << '\n'; } return 0; }