結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー shinichishinichi
提出日時 2021-09-29 16:56:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 189,092 KB
最終ジャッジ日時 2024-07-16 12:30:38
合計ジャッジ時間 7,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
174,584 KB
testcase_01 AC 164 ms
174,620 KB
testcase_02 AC 408 ms
188,704 KB
testcase_03 AC 413 ms
188,604 KB
testcase_04 AC 412 ms
188,644 KB
testcase_05 AC 402 ms
188,836 KB
testcase_06 AC 398 ms
188,800 KB
testcase_07 AC 401 ms
188,368 KB
testcase_08 AC 401 ms
189,092 KB
testcase_09 AC 394 ms
188,620 KB
testcase_10 AC 391 ms
188,556 KB
testcase_11 AC 350 ms
188,760 KB
testcase_12 AC 358 ms
188,892 KB
testcase_13 AC 347 ms
188,696 KB
testcase_14 AC 167 ms
174,240 KB
testcase_15 AC 166 ms
174,828 KB
testcase_16 AC 169 ms
174,816 KB
testcase_17 AC 167 ms
175,588 KB
testcase_18 AC 163 ms
175,248 KB
testcase_19 AC 167 ms
174,500 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

mod = 10**9+7 #出力の制限
N = 5 * 10**5
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 )

N, M = map(int, input().split())

total = cmb(2*N, N, mod) * 2 * N
for _ in range(M):
    t, x, y = map(int, input().split())
    road = 2 * N - (x + y + 1)
    if t == 1:
        value1 = cmb(x+y, x, mod)
        value2 = cmb(road, N-y, mod)

    else:
        value1 = cmb(x+y, x, mod)
        value2 = cmb(road, N-x, mod)
    total -= value1 * value2
    total %= mod
print(total % mod)




0