結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー |
|
提出日時 | 2021-07-09 21:36:56 |
言語 | C++14 (gcc 11.2.0 + boost 1.78.0) |
結果 |
AC
|
実行時間 | 168 ms / 2,000 ms |
コード長 | 1,556 bytes |
コンパイル時間 | 844 ms |
使用メモリ | 15,688 KB |
最終ジャッジ日時 | 2023-02-01 22:26:13 |
合計ジャッジ時間 | 5,362 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge11 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
15,592 KB |
testcase_01 | AC | 111 ms
15,688 KB |
testcase_02 | AC | 168 ms
15,588 KB |
testcase_03 | AC | 168 ms
15,544 KB |
testcase_04 | AC | 167 ms
15,656 KB |
testcase_05 | AC | 166 ms
15,632 KB |
testcase_06 | AC | 168 ms
15,548 KB |
testcase_07 | AC | 167 ms
15,548 KB |
testcase_08 | AC | 166 ms
15,540 KB |
testcase_09 | AC | 166 ms
15,552 KB |
testcase_10 | AC | 165 ms
15,632 KB |
testcase_11 | AC | 152 ms
15,548 KB |
testcase_12 | AC | 152 ms
15,548 KB |
testcase_13 | AC | 152 ms
15,612 KB |
testcase_14 | AC | 111 ms
15,604 KB |
testcase_15 | AC | 111 ms
15,536 KB |
testcase_16 | AC | 111 ms
15,540 KB |
testcase_17 | AC | 111 ms
15,540 KB |
testcase_18 | AC | 111 ms
15,604 KB |
testcase_19 | AC | 111 ms
15,540 KB |
ソースコード
#include "iostream" #include "climits" #include "list" #include "queue" #include "stack" #include "set" #include "functional" #include "algorithm" #include "string" #include "map" #include "unordered_map" #include "unordered_set" #include "iomanip" #include "cmath" #include "random" #include "bitset" #include "cstdio" #include "numeric" #include "cassert" #include "ctime" using namespace std; constexpr long long int MOD = 1000000007; //constexpr int MOD = 1000000007; //constexpr int MOD = 998244353; //constexpr long long int MOD = 998244353; constexpr double EPS = 1e-8; //int N, M, K, T, H, W, L, R; long long int N, M, K, T, H, W, L, R; long long by[777777]; long long inv[777777]; long long int power(long long int x, long long int n, long long int M) { long long int ret = 1; long long int by = x; while (n) { if (n & 1) { ret *= by; ret %= M; } by *= by; by %= M; n >>= 1; } return ret; } long long ncr(long long n, long long r) { if (n < r || r < 0)return 0; if (n < 0)return 0; return by[n] * inv[r] % MOD * inv[n - r] % MOD; } int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> N >> M; by[0] = inv[0] = 1; for (int i = 1; i < 777777; i++) { by[i] = by[i - 1] * i % MOD; inv[i] = power(by[i], MOD - 2, MOD); } long long ans = N * 2 * ncr(N * 2, N) % MOD; for (int i = 0; i < M; i++) { int a, b, c; cin >> a >> b >> c; long long add = ncr(b + c, b); if (a == 1)b++; else c++; add *= ncr(N * 2 - (b + c), N - b); ans += MOD - add % MOD; ans %= MOD; } cout << ans << endl; }