結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー detteiuudetteiuu
提出日時 2024-09-23 17:18:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 846 bytes
コンパイル時間 5,897 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 125,584 KB
最終ジャッジ日時 2024-09-23 17:21:12
合計ジャッジ時間 19,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 210 ms
90,480 KB
testcase_15 AC 211 ms
90,460 KB
testcase_16 AC 213 ms
89,168 KB
testcase_17 AC 210 ms
90,888 KB
testcase_18 AC 213 ms
89,156 KB
testcase_19 AC 210 ms
89,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class CP:
    def __init__(self, N):
        self.fact = [1]
        self.fact_inv = [1]
        for i in range(1, N+1):
            self.fact.append((self.fact[-1]*i)%MOD)
            self.fact_inv.append(pow(self.fact[-1], MOD-2, MOD))
    def C(self, N, K):
        if N >= K:
            return self.fact[N]*self.fact_inv[K]%MOD*self.fact_inv[N-K]%MOD
        else:
            return 0
    def P(self, N, K):
        if N >= K:
            return self.fact[N]*self.fact_inv[N-K]%MOD
        else:
            return 0

N, M = map(int, input().split())
free = [list(map(int, input().split())) for _ in range(M)]

MOD = 10**9+7
cp = CP(10**5*2)
ans = cp.C(N*2, N)*(N*2)

for t, x, y in free:
    if t == 1:
        nx, ny = N-x-1, N-y
    else:
        nx, ny = N-x, N-y-1
    ans -= cp.C(x+y, x)*cp.C(nx+ny, nx)%MOD
    ans %= MOD

print(ans)
0