結果

問題 No.1684 Find Brackets
ユーザー hitonanodehitonanode
提出日時 2021-08-14 01:16:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 2,296 bytes
コンパイル時間 6,918 ms
コンパイル使用メモリ 254,396 KB
実行使用メモリ 26,916 KB
最終ジャッジ日時 2024-06-29 19:25:21
合計ジャッジ時間 8,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
11,164 KB
testcase_01 AC 15 ms
11,256 KB
testcase_02 AC 52 ms
26,852 KB
testcase_03 AC 15 ms
11,260 KB
testcase_04 AC 15 ms
11,228 KB
testcase_05 AC 15 ms
11,104 KB
testcase_06 AC 15 ms
11,284 KB
testcase_07 AC 44 ms
26,116 KB
testcase_08 AC 43 ms
24,232 KB
testcase_09 AC 32 ms
22,436 KB
testcase_10 AC 23 ms
14,752 KB
testcase_11 AC 20 ms
13,420 KB
testcase_12 AC 36 ms
19,168 KB
testcase_13 AC 43 ms
24,180 KB
testcase_14 AC 51 ms
26,904 KB
testcase_15 AC 37 ms
26,756 KB
testcase_16 AC 49 ms
26,912 KB
testcase_17 AC 53 ms
26,904 KB
testcase_18 AC 51 ms
26,764 KB
testcase_19 AC 16 ms
11,188 KB
testcase_20 AC 15 ms
11,308 KB
testcase_21 AC 40 ms
26,912 KB
testcase_22 AC 38 ms
26,916 KB
testcase_23 AC 38 ms
26,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Validator
#include "testlib.h"
#include <cassert>
#include <iostream>
#include <vector>
#include <atcoder/modint>
using namespace std;

template <typename modint> struct acl_fac {
    std::vector<modint> facs, facinvs;
    acl_fac(int N) {
        assert(-1 <= N and N < modint::mod());
        facs.resize(N + 1, 1);
        for (int i = 1; i <= N; i++) facs[i] = facs[i - 1] * i;
        facinvs.assign(N + 1, facs.back().inv());
        for (int i = N; i > 0; i--) facinvs[i - 1] = facinvs[i] * i;
    }
    modint ncr(int n, int r) const {
        if (n < 0 or r < 0 or n < r) return 0;
        return facs[n] * facinvs[r] * facinvs[n - r];
    }
    modint operator[](int i) const { return facs[i]; }
    modint finv(int i) const { return facinvs[i]; }
};
using mint = atcoder::modint1000000007;
acl_fac<mint> fac(1000000);

int main(int argc, char **argv) {
    registerValidation(argc, argv);
    int N = inf.readInt(1, 1000000);
    inf.readSpace();
    int M = inf.readInt(0, N);
    inf.readEoln();
    inf.readEof();

    acl_fac<mint> fac(N);
    vector<mint> ncrs(N + 1);
    for (int i = 0; i < int(ncrs.size()); i++) ncrs[i] = fac.ncr(N, i);
    vector<mint> ncr_cums(ncrs.size() + 1);
    for (int i = 0; i < int(ncrs.size()); i++) ncr_cums[i + 1] = ncr_cums[i] + ncrs[i];

    mint ret = 0;

    auto add_closed = [&](int l, int r) {
        if (l > r) return;
        l = max(l, 0);
        r = min(r, N);
        ret += ncr_cums[r + 1] - ncr_cums[l];
    };

    for (int h = 1; h <= N; h++) {
        if (M - (N - M) >= h) {
            add_closed(M, N);
        } else {
            int l = h + (N - h + 1) / 2;
            add_closed(l, N);
            if ((N - h) % 2) {
                add_closed(l, l - 1 + l - M);
            } else {
                add_closed(l + 1, l + l - M);
            }
        }
    }
    const int K = N - M;
    for (int h = 1; h <= K; h++) {
        const int l = h + (N - h + 1) / 2;
        if (l <= K) {
            add_closed(l, K);
            if ((N - h) % 2) {
                add_closed(l, N);
            } else {
                add_closed(l + 1, N);
            }
        } else {
            add_closed(h + N - K, N);
        }
    }
    for (int i = M; i <= N; i++) ret += fac.ncr(N, i) * N;
    cout << ret.val() << '\n';
}
0