結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | Jupytor |
提出日時 | 2021-07-09 23:39:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,450 bytes |
コンパイル時間 | 783 ms |
コンパイル使用メモリ | 92,500 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-07-01 18:30:19 |
合計ジャッジ時間 | 5,454 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> #include <tuple> #include <string> #include <vector> #include <queue> #include <deque> #include <stack> #include <set> #include <unordered_set> #include <map> #include <unordered_map> #define flush fflush(stdout) #define endl '\n' #define all(v) v.begin(), v.end() #define pf(dans) printf("%.12lf", dans) #define pfn(dans) pf(dans); cout << endl; using namespace std; //using namespace atcoder; typedef long long ll; typedef pair<int, int> P; typedef pair<ll, ll> Pl; const int mod1 = (int)1e9 + 7, mod2 = (int)998244353; const int INF = (int)1e9 + 10; const ll LINF = (ll)1e18 + 10; const int di[8] = {1, 0, -1, 0, 1, 1, -1, -1}, dj[8] = {0, 1, 0, -1, -1, 1, -1, 1}; #define rep0(i, n) for (i = 0; i < n; i++) #define rep1(i, a, b) for (i = a; i < b; i++) #define reprev(i, n) for (i = n - 1; i >= 0; i--) template <typename T> T my_abs(T x){ return (x >= 0)? x : -x; } template <typename T> void chmax(T &a, T b){ a = max(a, b); } template <typename T> void chmin(T &a, T b){ a = min(a, b); } ll gcd(ll a, ll b){ if (a > b) return gcd(b, a); if (a == 0) return b; return gcd(b % a, a); } bool incld_bit(ll bit, int i){ return ((bit>>i) & 1) == 1; } // -------------------------------------------------------------------------------- #define N 200007 #define commod mod1 ll fac[N], inv[N], finv[N]; void cominit(int n) { int i; fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (i = 2; i < n + 2; i++) { fac[i] = fac[i - 1] * i % commod; inv[i] = commod - inv[commod % i] * (commod / i) % commod; finv[i] = finv[i - 1] * inv[i] % commod; } return; } ll com(int n, int r) { if (n < r) return 0; if (n < 0 || r < 0) return 0; if (r == 0 || r == n) return 1; return (fac[n] * finv[r]) % commod * finv[n - r] % commod; } int main(void){ int i, j; int n, m; int t, x, y; ll otoku; otoku = 0; cin >> n >> m; cominit(n * 2); rep0(i, m){ cin >> t >> x >> y; if (t == 1){ otoku = (otoku + com(x + y, x) * com(n * 2 - x - y - 1, n - x - 1) % mod1) % mod1; }else{ otoku = (otoku + com(x + y, x) * com(n * 2 - x - y - 1, n - y - 1) % mod1) % mod1; } } ll ans; ans = (ll)n * 2 * com(n * 2, n) % mod1; ans = (ans + mod1 - otoku) % mod1; cout << ans << endl; return 0; }