結果

問題 No.1846 Good Binary Matrix
ユーザー tatyamtatyam
提出日時 2021-12-14 23:59:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 2,878 ms
コンパイル使用メモリ 249,428 KB
実行使用メモリ 11,104 KB
最終ジャッジ日時 2024-07-23 19:44:18
合計ジャッジ時間 5,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 104 ms
11,008 KB
testcase_17 AC 106 ms
11,104 KB
testcase_18 AC 101 ms
10,872 KB
testcase_19 AC 99 ms
10,460 KB
testcase_20 AC 105 ms
10,936 KB
testcase_21 AC 13 ms
7,296 KB
testcase_22 AC 15 ms
7,552 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 74 ms
8,960 KB
testcase_26 AC 48 ms
6,940 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 12 ms
6,944 KB
testcase_29 AC 33 ms
6,940 KB
testcase_30 AC 78 ms
9,520 KB
testcase_31 AC 66 ms
9,008 KB
testcase_32 AC 87 ms
9,684 KB
testcase_33 AC 88 ms
10,736 KB
testcase_34 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using Modint = atcoder::modint1000000007;


int main(){
    int H, W;
    cin >> H >> W;
    vector<Modint> fac(H + 1), inv(H + 1);
    fac[0] = 1;
    for(int i = 1; i <= H; i++) fac[i] = fac[i - 1] * Modint::raw(i);
    inv[H] = fac[H].inv();
    for(int i = H; i; i--) inv[i - 1] = inv[i] * Modint::raw(i);
    auto binom = [&](int n, int r){ return fac[n] * inv[r] * inv[n - r]; };
    Modint ans = 0;
    Modint x = 1;
    for(int h = 0; h <= H; h++){
        if((h ^ H) & 1) ans -= (x - 1).pow(W) * binom(H, h);
        else ans += (x - 1).pow(W) * binom(H, h);
        x += x;
    }
    cout << ans.val() << endl;
}
0