結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー trineutrontrineutron
提出日時 2021-07-09 21:57:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 207,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 16:15:04
合計ジャッジ時間 6,275 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
6,812 KB
testcase_01 AC 62 ms
6,940 KB
testcase_02 AC 231 ms
6,944 KB
testcase_03 AC 232 ms
6,940 KB
testcase_04 AC 232 ms
6,940 KB
testcase_05 AC 232 ms
6,944 KB
testcase_06 AC 230 ms
6,940 KB
testcase_07 AC 232 ms
6,940 KB
testcase_08 AC 233 ms
6,940 KB
testcase_09 AC 229 ms
6,940 KB
testcase_10 AC 228 ms
6,940 KB
testcase_11 AC 206 ms
6,940 KB
testcase_12 AC 207 ms
6,940 KB
testcase_13 AC 206 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint = modint1000000007;

vector<mint> fact, inv;

void init(int n)
{
    fact.push_back(1);
    inv.push_back(1);
    for (int i = 0; i < n; i++)
    {
        fact.push_back(fact.at(i) * (i + 1));
        inv.push_back(fact.at(i + 1).inv());
    }
}

mint ncr(int n, int r)
{
    if (r < 0 or n < r)
    {
        return 0;
    }
    return fact.at(n) * inv.at(r) * inv.at(n - r);
}

int main()
{
    int n, m;
    cin >> n >> m;
    init(2 * n);
    mint ans = 2 * n * ncr(2 * n, n);
    for (int i = 0; i < m; i++)
    {
        int t, x, y;
        cin >> t >> x >> y;
        if (t == 1)
        {
            ans -= ncr(x + y, x) * ncr(2 * n - x - y - 1, n - x - 1);
        }
        else
        {
            ans -= ncr(x + y, x) * ncr(2 * n - x - y - 1, n - x);
        }
    }
    cout << ans.val() << endl;
    return 0;
}
0