結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | bokusunny |
提出日時 | 2022-01-20 11:59:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,572 bytes |
コンパイル時間 | 2,074 ms |
コンパイル使用メモリ | 209,604 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-11-23 14:42:25 |
合計ジャッジ時間 | 7,187 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 7 ms
6,272 KB |
testcase_15 | AC | 7 ms
6,272 KB |
testcase_16 | AC | 6 ms
6,272 KB |
testcase_17 | AC | 6 ms
6,144 KB |
testcase_18 | AC | 6 ms
6,272 KB |
testcase_19 | AC | 7 ms
6,272 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define bokusunny ios::sync_with_stdio(false), cin.tie(nullptr); #include <atcoder/modint> using namespace atcoder; using mint = modint1000000007; const int MOD = 1e9 + 7; template <class T> struct ModComb { private: vector<T> Fac, Finv, Inv; int MAX_N; public: ModComb(int max_n = 1 << 20) { MAX_N = max_n; Fac.resize(MAX_N + 1), Finv.resize(MAX_N + 1), Inv.resize(MAX_N + 1); Fac[0] = Fac[1] = 1; Finv[0] = Finv[1] = 1; Inv[1] = 1; for (int i = 2; i <= MAX_N; i++) { Fac[i] = Fac[i - 1] * i; Inv[i] = (mint)0 + MOD - Inv[MOD % i] * (MOD / i); Finv[i] = Finv[i - 1] * Inv[i]; } } T nCk(int n, int k) { assert(n <= MAX_N); if (n < k) return 0; if (n < 0 || k < 0) return 0; return Fac[n] * Finv[k] * Finv[n - k]; } T nHr(int n, int r) { return nCk(n + r - 1, r); } T nPr(int n, int r) { assert(n <= MAX_N); assert(0 <= r && r <= n); return Fac[n] / Fac[n - r]; } }; void solve() { int N, M; cin >> N >> M; vector<int> T(M), X(M), Y(M); for (int i = 0; i < M; i++) cin >> T[i] >> X[i] >> Y[i]; ModComb<mint> Comb(1 << 18); mint ans = (mint)1 * 2 * N * Comb.nCk(2 * N, N); for (int i = 0; i < M; i++) { if (T[i] == 1) { ans -= Comb.nCk(X[i] + Y[i], X[i]) * Comb.nCk(2 * N - X[i] - Y[i] - 1, N - Y[i]); } else { ans -= Comb.nCk(X[i] + Y[i], X[i]) * Comb.nCk(2 * N - X[i] - Y[i] - 1, N - X[i]); } } cout << ans.val() << endl; } int main() { bokusunny; solve(); return 0; }