結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー stngstng
提出日時 2021-07-18 16:15:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 183,808 KB
最終ジャッジ日時 2024-07-08 09:46:31
合計ジャッジ時間 7,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
149,504 KB
testcase_01 AC 116 ms
149,760 KB
testcase_02 AC 343 ms
183,552 KB
testcase_03 AC 349 ms
183,680 KB
testcase_04 AC 344 ms
183,552 KB
testcase_05 AC 328 ms
183,808 KB
testcase_06 AC 342 ms
183,772 KB
testcase_07 AC 330 ms
183,808 KB
testcase_08 AC 323 ms
183,192 KB
testcase_09 AC 329 ms
183,296 KB
testcase_10 AC 328 ms
183,296 KB
testcase_11 AC 325 ms
183,808 KB
testcase_12 AC 325 ms
183,680 KB
testcase_13 AC 322 ms
183,660 KB
testcase_14 AC 34 ms
51,584 KB
testcase_15 AC 31 ms
51,840 KB
testcase_16 AC 33 ms
51,840 KB
testcase_17 AC 32 ms
52,352 KB
testcase_18 AC 34 ms
51,840 KB
testcase_19 AC 33 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

n,m = map(int,input().split())
txy = [[int(i) for i in input().split()] for j in range(m)]

N = 2*n

mod = 10**9+7 #出力の制限
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

a = cmb(N,n,mod)
ans = a*N
ans %= mod

for i in range(m):
    bfr = cmb(txy[i][1]+txy[i][2],txy[i][1],mod)
    bfr %= mod
    if txy[i][0] == 1:
        txy[i][1] += 1
    else:
        txy[i][2] += 1
    wa = txy[i][1]+txy[i][2]
    ngs = N - (wa)
    tate = n - txy[i][1]
    aft = cmb(ngs,tate,mod)
    aft %= mod
    ans -= (bfr*aft) % mod
    ans %= mod

print(ans%mod)
0