結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー |
![]() |
提出日時 | 2021-07-09 22:31:58 |
言語 | C++17 (gcc 12.2.0 + boost 1.81.0) |
結果 |
AC
|
実行時間 | 114 ms / 2,000 ms |
コード長 | 2,034 bytes |
コンパイル時間 | 1,848 ms |
実行使用メモリ | 9,356 KB |
最終ジャッジ日時 | 2023-02-02 00:28:09 |
合計ジャッジ時間 | 5,121 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge15 |
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
9,312 KB |
testcase_01 | AC | 33 ms
9,244 KB |
testcase_02 | AC | 109 ms
9,304 KB |
testcase_03 | AC | 114 ms
9,348 KB |
testcase_04 | AC | 112 ms
9,316 KB |
testcase_05 | AC | 108 ms
9,188 KB |
testcase_06 | AC | 112 ms
9,296 KB |
testcase_07 | AC | 110 ms
9,216 KB |
testcase_08 | AC | 113 ms
9,328 KB |
testcase_09 | AC | 111 ms
9,296 KB |
testcase_10 | AC | 114 ms
9,220 KB |
testcase_11 | AC | 87 ms
9,180 KB |
testcase_12 | AC | 87 ms
9,224 KB |
testcase_13 | AC | 86 ms
9,312 KB |
testcase_14 | AC | 34 ms
9,184 KB |
testcase_15 | AC | 34 ms
9,192 KB |
testcase_16 | AC | 34 ms
9,352 KB |
testcase_17 | AC | 35 ms
9,196 KB |
testcase_18 | AC | 34 ms
9,356 KB |
testcase_19 | AC | 34 ms
9,220 KB |
ソースコード
#include "bits/stdc++.h" #define int long long using namespace std; using ll = long long; using P = pair<ll, ll>; const ll INF = (1LL << 61); ll mod = 1000000007; struct mint { ll x; // typedef long long ll; mint(ll x = 0) :x((x%mod + mod) % mod) {} mint operator-() const { return mint(-x); } mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod - a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { mint res(*this); return res += a; } mint operator-(const mint a) const { mint res(*this); return res -= a; } mint operator*(const mint a) const { mint res(*this); return res *= a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t >> 1); a *= a; if (t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod - 2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint res(*this); return res /= a; } }; istream& operator>>(istream& is, mint& a) { return is >> a.x; } ostream& operator<<(ostream& os, const mint& a) { return os << a.x; } struct combination { vector<mint> fact, ifact; combination(int n) :fact(n + 1), ifact(n + 1) { //assert(n < mod); fact[0] = 1; for (int i = 1; i <= n; ++i) fact[i] = fact[i - 1] * i; ifact[n] = fact[n].inv(); for (int i = n; i >= 1; --i) ifact[i - 1] = ifact[i] * i; } mint operator()(int n, int k) { if (k < 0 || k > n) return 0; return fact[n] * ifact[k] * ifact[n - k]; } }; signed main() { ios::sync_with_stdio(false); cin.tie(0); combination com(400010); int N, M; cin >> N >> M; mint ans = com(2 * N, N) * 2 * N; for (int i = 0; i < M; i++) { int t, x, y; cin >> t >> x >> y; int nx = x, ny = y; if (t == 1)nx = x + 1; else ny = y + 1; ans -= com((x + y), x) * com((N - nx) + (N - ny), N - nx); } cout << ans << endl; return 0; }