結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー moharan627moharan627
提出日時 2021-08-05 20:50:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,388 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 80,296 KB
最終ジャッジ日時 2023-10-14 21:40:31
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 76 ms
76,844 KB
testcase_15 AC 75 ms
77,060 KB
testcase_16 AC 77 ms
76,828 KB
testcase_17 AC 74 ms
76,848 KB
testcase_18 AC 75 ms
76,812 KB
testcase_19 AC 76 ms
77,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
#10**20,2**63,float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
#from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N,M = MI()
    def modinv(x):
        return pow(x, MOD - 2, MOD)
    MAX = 200020
    Fact = [0]*MAX
    Fact[0] = 1
    Fact[1] = 1
    for n in range(2,MAX):
        Fact[n] = (n*(Fact[n-1]))%MOD
    #print((Fact[N+K]*modinv(Fact[N]*Fact[K])) % MOD)
    All = Fact[2*N]*modinv(Fact[N]*Fact[N]) % MOD
    All *= (2*N)
    All %= MOD
    #print(All)
    for _ in range(M):
        T,X,Y = MI()
        Bef = Fact[X+Y]*modinv(Fact[X]*Fact[Y])%MOD
        Up = N-X
        Right = N-Y
        if T==1:
            #print(Fact[(Up-1)+Right]*modinv(Fact[Up-1]*Fact[Right]) % MOD)
            All-= Bef*(Fact[(Up-1)+Right]*modinv(Fact[Up-1]*Fact[Right]))
            All %= MOD
        else:
            #print(Fact[Up+ Right-1] * modinv(Fact[Up] * Fact[Right-1]) % MOD)
            All -= Bef*(Fact[Up+ Right-1] * modinv(Fact[Up] * Fact[Right-1]))
            All %= MOD
    print(All)
    return
solve()
#sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!
0