結果

問題 No.767 配られたジャパリまん
ユーザー chonbo0127chonbo0127
提出日時 2021-08-04 12:26:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,785 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 259,984 KB
最終ジャッジ日時 2024-09-16 15:05:19
合計ジャッジ時間 5,358 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,456 KB
testcase_01 AC 38 ms
54,188 KB
testcase_02 AC 37 ms
53,060 KB
testcase_03 AC 37 ms
53,684 KB
testcase_04 AC 93 ms
77,052 KB
testcase_05 AC 291 ms
109,816 KB
testcase_06 AC 38 ms
52,964 KB
testcase_07 AC 38 ms
53,748 KB
testcase_08 AC 42 ms
60,652 KB
testcase_09 AC 98 ms
83,388 KB
testcase_10 AC 174 ms
93,672 KB
testcase_11 AC 128 ms
96,112 KB
testcase_12 AC 127 ms
88,972 KB
testcase_13 AC 163 ms
91,176 KB
testcase_14 AC 115 ms
98,616 KB
testcase_15 AC 72 ms
90,036 KB
testcase_16 AC 129 ms
93,232 KB
testcase_17 AC 51 ms
70,460 KB
testcase_18 AC 56 ms
72,000 KB
testcase_19 AC 129 ms
101,756 KB
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K = map(int,input().split())
L = [list(map(int,input().split())) for _ in range(K)]
MOD = 10**8+7
mod = MOD

factorial = [1, 1]
inverse = [1, 1]
invere_base = [0, 1]
for i in range(2, H+W + 1):
    factorial.append((factorial[-1] * i) % MOD)
    invere_base.append((-invere_base[MOD % i] * (MOD // i)) % MOD) #逆元
    inverse.append((inverse[-1] * invere_base[-1]) % MOD) #階乗逆元

#combination
def nCr(n, r):
    if (r < 0 or r > n):
        return 0
    r = min(r, n - r)
    return factorial[n] * inverse[r] % MOD * inverse[n - r] % MOD

def bit_count(n):
    c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333)
    c = (c & 0x0f0f0f0f0f0f0f0f) + ((c >> 4) & 0x0f0f0f0f0f0f0f0f)
    c = (c & 0x00ff00ff00ff00ff) + ((c >> 8) & 0x00ff00ff00ff00ff)
    c = (c & 0x0000ffff0000ffff) + ((c >> 16) & 0x0000ffff0000ffff)
    c = (c & 0x00000000ffffffff) + ((c >> 32) & 0x00000000ffffffff)
    return c

D = [0]*(1<<K)
for i in range(1<<K):
    X = []
    for j in range(K):
        if i&(1<<j):
            X.append([L[j][0],L[j][1],L[j][0]+L[j][1]*10**(-11)])
    X.sort(key = lambda x:x[2])
    lx = len(X)
    a,b = 0,0
    ans = 1
    for j in range(lx):
        na,nb = X[j][:2]
        da,db = na-a,nb-b
        ans *= nCr(da+db,db)
        ans %= MOD
        a,b = na,nb
    na,nb = H,W
    da,db = na-a,nb-b
    ans *= nCr(da+db,db)
    ans %= MOD
    if bit_count(i)%2:
        ans *= -1
    D[i] = ans%MOD

dp = [D[i] for i in range(1<<K)]
for j in range(K):
    ndp = [0]*(1<<K)
    for i in range(1<<K):
        if i&(1<<j):
            ndp[i] = dp[i]+dp[i&(~(1<<j))]
        else:
            ndp[i] = dp[i]
        ndp[i] %= MOD
    dp = ndp[:]

for i in range(1<<K):
    print(dp[i])
0