結果
問題 | No.2572 Midori on the grid |
ユーザー | KumaTachiRen |
提出日時 | 2023-12-02 15:43:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 239 ms / 5,000 ms |
コード長 | 2,198 bytes |
コンパイル時間 | 4,376 ms |
コンパイル使用メモリ | 264,164 KB |
実行使用メモリ | 26,752 KB |
最終ジャッジ日時 | 2024-09-26 19:11:06 |
合計ジャッジ時間 | 8,267 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 239 ms
26,624 KB |
testcase_01 | AC | 137 ms
26,624 KB |
testcase_02 | AC | 194 ms
26,752 KB |
testcase_03 | AC | 185 ms
26,752 KB |
testcase_04 | AC | 119 ms
26,624 KB |
testcase_05 | AC | 197 ms
26,624 KB |
testcase_06 | AC | 47 ms
26,496 KB |
testcase_07 | AC | 48 ms
26,752 KB |
testcase_08 | AC | 47 ms
26,624 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; struct Fast { Fast() { std::cin.tie(nullptr); ios::sync_with_stdio(false); cout << setprecision(10); } } fast; #define all(a) (a).begin(), (a).end() #define contains(a, x) ((a).find(x) != (a).end()) #define rep(i, a, b) for (int i = (a); i < (int)(b); i++) #define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--) #define YN(b) cout << ((b) ? "YES" : "NO") << "\n"; #define Yn(b) cout << ((b) ? "Yes" : "No") << "\n"; #define yn(b) cout << ((b) ? "yes" : "no") << "\n"; template <typename T> ostream& operator<<(ostream& os, vector<T>& vec) { for (int i = 0; i < vec.size(); i++) { os << vec[i] << (i + 1 == vec.size() ? "" : " "); } return os; } using ll = long long; using vb = vector<bool>; using vvb = vector<vb>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using mint = modint998244353; using vm = vector<mint>; using vvm = vector<vm>; inline ostream& operator<<(ostream& os, const mint P) { return os << P.val(); }; template <typename mint> class Factorial { public: Factorial(int max) : n(max) { f = std::vector<mint>(n + 1); finv = std::vector<mint>(n + 1); f[0] = 1; for (int i = 1; i <= n; i++) f[i] = f[i - 1] * i; finv[n] = f[n].inv(); for (int i = n; i > 0; i--) finv[i - 1] = finv[i] * i; } mint fact(int k) const { assert(0 <= k && k <= n); return f[k]; } mint fact_inv(int k) const { assert(0 <= k && k <= n); return finv[k]; } mint binom(int k, int r) const { assert(0 <= k && k <= n); if (r < 0 || r > k) return 0; return f[k] * finv[r] * finv[k - r]; } mint inv(int k) const { assert(0 < k && k <= n); return finv[k] * f[k - 1]; } private: int n; std::vector<mint> f, finv; }; void solve() { int h, w, q; cin >> h >> w >> q; Factorial<mint> fact(3000000); while (q--) { int t; cin >> t; mint ans = fact.binom(h + w, h) - fact.binom(h + w, h + t); if ((ll)t * (h + t - w) < 0) ans = 0; cout << ans << "\n"; } } int main() { int t = 1; // cin >> t; while (t--) solve(); }