結果

問題 No.1846 Good Binary Matrix
ユーザー asumo0729asumo0729
提出日時 2022-02-18 22:42:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,655 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 279,160 KB
最終ジャッジ日時 2024-06-29 09:28:21
合計ジャッジ時間 12,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 424 ms
271,208 KB
testcase_01 AC 423 ms
271,876 KB
testcase_02 AC 428 ms
272,080 KB
testcase_03 AC 420 ms
271,388 KB
testcase_04 AC 421 ms
271,176 KB
testcase_05 AC 421 ms
272,084 KB
testcase_06 AC 427 ms
271,940 KB
testcase_07 AC 437 ms
271,472 KB
testcase_08 AC 432 ms
270,356 KB
testcase_09 AC 425 ms
271,500 KB
testcase_10 AC 429 ms
271,656 KB
testcase_11 AC 429 ms
270,612 KB
testcase_12 AC 425 ms
271,364 KB
testcase_13 AC 427 ms
271,632 KB
testcase_14 AC 418 ms
272,040 KB
testcase_15 AC 419 ms
270,752 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,235 ms
272,892 KB
testcase_22 AC 1,294 ms
273,600 KB
testcase_23 AC 467 ms
271,856 KB
testcase_24 AC 424 ms
271,932 KB
testcase_25 TLE -
testcase_26 AC 1,577 ms
275,292 KB
testcase_27 AC 496 ms
273,004 KB
testcase_28 AC 695 ms
272,628 KB
testcase_29 AC 1,180 ms
271,996 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 437 ms
272,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect
import math
import itertools
import copy

stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
#mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])

class Comb():
    def __init__(self, N, mod):
        self.N = N
        self.mod = mod
        self.fa = self.fa_fainv()[0]
        self.fainv = self.fa_fainv()[1]

    def fa_fainv(self):
        fa = [1]
        for i in range(1, self.N + 1):
            fa.append(fa[-1] * i % self.mod)

        fainv = [pow(fa[-1],self.mod - 2,self.mod)]
        for i in range(1, self.N + 1)[::-1]:
            fainv.append(fainv[-1] * i % self.mod)
        fainv = fainv[::-1]

        return fa, fainv

    def aCb(self, a, b):
        if b < 0 or a < b: 
            return 0
        return self.fa[a] * self.fainv[a - b] * self.fainv[b] % self.mod

    def aPb(self, a, b):
        if b < 0 or a < b: 
            return 0
        return self.fa[a] * self.fainv[a - b]

###############################################################

H, W = lp()
comb = Comb(2 * 10 ** 6 + 10, mod)
ans = 0
for i in range(H + 1):
    s = (-1) ** (i % 2)
    p = pow(2, H - i, mod)
    p = pow(p, mod - 2, mod)
    C = comb.aCb(H, i) * pow(2, H * W - W * i, mod)

    r = pow(1 - p , W, mod)
    q = s * C * r
    q %= mod
    ans += q
    ans %= mod

print(ans)
0