結果

問題 No.767 配られたジャパリまん
ユーザー pekempeypekempey
提出日時 2018-12-15 03:15:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,003 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 46,976 KB
実行使用メモリ 9,700 KB
最終ジャッジ日時 2024-09-25 05:42:46
合計ジャッジ時間 1,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,448 KB
testcase_01 AC 7 ms
9,576 KB
testcase_02 AC 7 ms
9,572 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 7 ms
9,576 KB
testcase_07 WA -
testcase_08 AC 7 ms
9,580 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 7 ms
9,580 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>

#define M 100000007

struct mint {
    int n;
    mint(int n_ = 0) : n(n_) {}
};

mint operator+(mint a, mint b) {
    a.n += b.n;
    if (a.n >= M) {
        a.n -= M;
    }
    return a;
}

mint operator-(mint a, mint b) {
    a.n -= b.n;
    if (a.n < 0) {
        a.n += M;
    }
    return a;
}

mint operator*(mint a, mint b) {
    return (long long)a.n * b.n % M;
}

mint &operator-=(mint &a, mint b) {
    return a = a - b;
}

mint &operator*=(mint &a, mint b) {
    return a = a * b;
}

mint fact[200001] = {1,1};
mint ifact[200001] = {1,1};
mint inv[200001] = {0,1};

void init() {
    for (int i = 2; i <= 200000; i++) {
        inv[i] = inv[M % i] * (M - M / i);
        fact[i] = fact[i - 1] * i;
        ifact[i] = ifact[i - 1] * inv[i];
    }
}

mint C(int n, int r) {
    if (n < 0 || r < 0 || n < r) return 0;
    return fact[n] * ifact[n - r] * ifact[r];
}

struct P {
    int y, x;
};

bool operator<(P a, P b) {
    return a.y + a.x < b.y + b.x;
}

int H, W, K;
P ps[20];
mint ans[1 << 20];

int main() {
    init();
    scanf("%d %d %d", &H, &W, &K);
    for (int i = 0; i < K; i++) {
        scanf("%d %d", &ps[i].y, &ps[i].x);
    }
    std::sort(ps, ps + K);
    for (int i = 0; i < 1 << K; i++) {
        int y = 0;
        int x = 0;
        ans[i] = 1;
        for (int j = 0; j < K; j++) if (i >> j & 1) {
            int dy = ps[j].y - y;
            int dx = ps[j].x - x;
            ans[i] *= C(dy + dx, dx);
            y = ps[j].y;
            x = ps[j].x;
        }
        int dy = H - y;
        int dx = W - x;
        ans[i] *= C(dy + dx, dx);
    }
    /* moebius transform */
    for (int i = 0; i < K; i++) {
        for (int j = 0; j < 1 << K; j++) {
            if (~j & 1 << i) {
                ans[j | 1 << i] -= ans[j];
            }
        }
    }
    for (int i = 0; i < 1 << K; i++) {
        for (int j = 0; j < K; j++) if (i >> j & 1) ans[i] *= M - 1;
        printf("%d\n", ans[i].n);
    }
    return 0;
}

0