結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー olpheolphe
提出日時 2021-07-09 21:36:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,556 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 109,904 KB
実行使用メモリ 15,772 KB
最終ジャッジ日時 2023-09-14 08:01:47
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
15,488 KB
testcase_01 AC 134 ms
15,632 KB
testcase_02 AC 203 ms
15,524 KB
testcase_03 AC 201 ms
15,532 KB
testcase_04 AC 202 ms
15,536 KB
testcase_05 AC 199 ms
15,504 KB
testcase_06 AC 201 ms
15,552 KB
testcase_07 AC 202 ms
15,724 KB
testcase_08 AC 203 ms
15,552 KB
testcase_09 AC 203 ms
15,476 KB
testcase_10 AC 204 ms
15,636 KB
testcase_11 AC 179 ms
15,480 KB
testcase_12 AC 179 ms
15,596 KB
testcase_13 AC 180 ms
15,500 KB
testcase_14 AC 135 ms
15,720 KB
testcase_15 AC 135 ms
15,496 KB
testcase_16 AC 135 ms
15,600 KB
testcase_17 AC 134 ms
15,772 KB
testcase_18 AC 134 ms
15,552 KB
testcase_19 AC 135 ms
15,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0