結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | olphe |
提出日時 | 2021-07-09 21:36:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 202 ms / 2,000 ms |
コード長 | 1,556 bytes |
コンパイル時間 | 954 ms |
コンパイル使用メモリ | 110,628 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-07-01 15:28:13 |
合計ジャッジ時間 | 5,584 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
15,488 KB |
testcase_01 | AC | 135 ms
15,556 KB |
testcase_02 | AC | 201 ms
15,616 KB |
testcase_03 | AC | 202 ms
15,616 KB |
testcase_04 | AC | 200 ms
15,616 KB |
testcase_05 | AC | 200 ms
15,488 KB |
testcase_06 | AC | 199 ms
15,616 KB |
testcase_07 | AC | 199 ms
15,620 KB |
testcase_08 | AC | 199 ms
15,600 KB |
testcase_09 | AC | 198 ms
15,636 KB |
testcase_10 | AC | 199 ms
15,616 KB |
testcase_11 | AC | 182 ms
15,600 KB |
testcase_12 | AC | 182 ms
15,488 KB |
testcase_13 | AC | 181 ms
15,612 KB |
testcase_14 | AC | 133 ms
15,616 KB |
testcase_15 | AC | 138 ms
15,600 KB |
testcase_16 | AC | 134 ms
15,496 KB |
testcase_17 | AC | 133 ms
15,744 KB |
testcase_18 | AC | 135 ms
15,604 KB |
testcase_19 | AC | 135 ms
15,488 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; }