結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | NS |
提出日時 | 2021-07-10 14:04:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,667 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 88,600 KB |
最終ジャッジ日時 | 2024-07-02 02:12:25 |
合計ジャッジ時間 | 5,275 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 97 ms
70,784 KB |
testcase_02 | AC | 261 ms
88,600 KB |
testcase_03 | AC | 268 ms
88,192 KB |
testcase_04 | AC | 263 ms
87,804 KB |
testcase_05 | AC | 280 ms
87,936 KB |
testcase_06 | AC | 261 ms
87,736 KB |
testcase_07 | AC | 263 ms
87,700 KB |
testcase_08 | AC | 258 ms
87,960 KB |
testcase_09 | AC | 258 ms
87,872 KB |
testcase_10 | AC | 260 ms
88,096 KB |
testcase_11 | AC | 228 ms
88,104 KB |
testcase_12 | AC | 232 ms
87,936 KB |
testcase_13 | AC | 225 ms
88,036 KB |
testcase_14 | AC | 97 ms
70,400 KB |
testcase_15 | AC | 94 ms
70,784 KB |
testcase_16 | AC | 96 ms
70,784 KB |
testcase_17 | AC | 94 ms
70,784 KB |
testcase_18 | AC | 94 ms
70,440 KB |
testcase_19 | AC | 97 ms
70,400 KB |
ソースコード
class Combination: def __init__(self, n_max=10**6, mod=10**9+7): # self._n_max = n_max self._fac, self._finv, self._inv = [0]*n_max, [0]*n_max, [0]*n_max self._fac[0], self._fac[1] = 1, 1 self._finv[0], self._finv[1] = 1, 1 self._inv[1] = 1 self._mod = mod for i in range(2, n_max): self._fac[i] = self._fac[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 com(self, n, r): if n < r: return 0 if n < 0 or r < 0: return 0 return self._fac[n] * (self._finv[r] * self._finv[n - r] % self._mod) % self._mod def perm(self,n,r): if n < r: return 0 if n < 0 or r < 0: return 0 return self._fac[n] * (self._finv[n-r] % self._mod) % self._mod def lucas(self, n, r): # nCr (mod self._mod(prime)) if n < r: return 0 res = 1 while n > 0: nq, rq = n//self._mod, r//self._mod nr, rr = n-nq*self._mod, r-rq*self._mod res *= self.com(nr, rr) res %= self._mod n, r = nq, rq return res MOD=10**9+7 comb=Combination(5*10**5+10,MOD) n,m=map(int, input().split()) dist=n*2 pat=comb.com(2*n,n) ans=dist*pat for _ in range(m): t,x,y=map(int, input().split()) if t==1: pat1=comb.com(x+y,x) pat2=comb.com(2*n-(x+y+1),n-y) ans-=pat1*pat2 ans%=MOD if t==2: pat1=comb.com(x+y,x) pat2=comb.com(2*n-(x+y+1),n-x) ans-=pat1*pat2 ans%=MOD print(ans)