結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー terasaterasa
提出日時 2022-11-03 14:24:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 1,867 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 127,620 KB
最終ジャッジ日時 2024-07-18 00:01:08
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
96,676 KB
testcase_01 AC 144 ms
96,804 KB
testcase_02 AC 324 ms
127,036 KB
testcase_03 AC 322 ms
127,620 KB
testcase_04 AC 315 ms
127,156 KB
testcase_05 AC 311 ms
127,048 KB
testcase_06 AC 304 ms
127,340 KB
testcase_07 AC 305 ms
127,444 KB
testcase_08 AC 308 ms
127,340 KB
testcase_09 AC 307 ms
126,844 KB
testcase_10 AC 319 ms
127,024 KB
testcase_11 AC 277 ms
127,036 KB
testcase_12 AC 275 ms
127,276 KB
testcase_13 AC 289 ms
127,168 KB
testcase_14 AC 44 ms
56,384 KB
testcase_15 AC 43 ms
56,132 KB
testcase_16 AC 44 ms
56,512 KB
testcase_17 AC 41 ms
57,196 KB
testcase_18 AC 43 ms
56,804 KB
testcase_19 AC 43 ms
56,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
import heapq
import bisect
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

# for AtCoder Easy test
if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input().rstrip()


class Combination:
    def __init__(self, N, mod):
        self.N = N
        self.mod = mod
        self.f = [None] * (N + 1)
        self.finv = [None] * (N + 1)
        self.inv = [None] * (N + 1)

        self.f[0] = 1
        self.f[1] = 1
        self.finv[0] = 1
        self.finv[1] = 1
        self.inv[1] = 1
        for i in range(2, N + 1):
            self.f[i] = self.f[i - 1] * i % self.mod
            self.inv[i] = self.mod - self.inv[self.mod % i] * (self.mod // i) % self.mod
            self.finv[i] = self.finv[i - 1] * self.inv[i] % self.mod

    def P(self, n, k):
        if n < k:
            return 0
        if n < 0 or k < 0:
            return 0
        return self.f[n] * self.finv[n - k] % self.mod

    def C(self, n, k):
        if n < k:
            return 0
        if n < 0 or k < 0:
            return 0
        return self.f[n] * (self.finv[k] * self.finv[n - k] % self.mod) % self.mod

    # 重複組合せ
    # n種類のものからk個選ぶ
    def H(self, n, k):
        if n == 0 and k == 0:
            return 1
        return self.C(k + n - 1, k)


N, M = readints()
mod = 10 ** 9 + 7
comb = Combination(2 * N, mod)
P = [tuple(readints()) for _ in range(M)]

ans = comb.C(2 * N, N) * (2 * N) % mod
for t, x, y in P:
    if t == 1:
        ans -= comb.C(x + y, x) * comb.C(2 * N - (x + y + 1), N - (x + 1)) % mod
    else:
        ans -= comb.C(x + y, x) * comb.C(2 * N - (x + y + 1),  N - (y + 1)) % mod
    ans %= mod
print(ans)
0