結果

問題 No.758 VVVVV
ユーザー pekempeypekempey
提出日時 2018-12-06 00:45:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 71,832 KB
実行使用メモリ 11,332 KB
最終ジャッジ日時 2024-09-13 03:34:35
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,236 KB
testcase_01 WA -
testcase_02 AC 3 ms
7,232 KB
testcase_03 AC 77 ms
11,200 KB
testcase_04 AC 35 ms
9,156 KB
testcase_05 AC 25 ms
7,876 KB
testcase_06 AC 23 ms
7,744 KB
testcase_07 AC 76 ms
10,952 KB
testcase_08 AC 38 ms
9,156 KB
testcase_09 AC 15 ms
6,984 KB
testcase_10 AC 27 ms
9,028 KB
testcase_11 AC 81 ms
11,328 KB
testcase_12 AC 20 ms
7,748 KB
testcase_13 AC 26 ms
8,256 KB
testcase_14 AC 15 ms
7,616 KB
testcase_15 AC 11 ms
6,944 KB
testcase_16 AC 12 ms
7,752 KB
testcase_17 AC 67 ms
10,564 KB
testcase_18 AC 35 ms
8,512 KB
testcase_19 AC 80 ms
11,332 KB
testcase_20 AC 22 ms
7,876 KB
testcase_21 AC 24 ms
8,512 KB
testcase_22 AC 82 ms
11,328 KB
testcase_23 AC 4 ms
7,496 KB
testcase_24 AC 4 ms
6,984 KB
testcase_25 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

// https://www.geeksforgeeks.org/combinatorics-ordered-trees/

using namespace std;

const long long mod = 1000000007;

vector<int> g[100000];
long long F[100001];
long long IF[100001];
long long inv[100001];
int L;

void dfs(int u, int p) {
    bool l = true;
    for (int v : g[u]) if (v != p) {
        dfs(v, u);
        l = false;
    }
    L += l;
}

long long C(int n, int r) {
    if (n < 0 || r < 0 || n < r) return 0;
    return F[n] * IF[r] % mod * IF[n - r] % mod;
}

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n - 1; i++) {
        int u, v;
        cin >> u >> v;
        u--; v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    dfs(0, -1);
    inv[1] = 1;
    for (int i = 2; i <= n; i++) {
        inv[i] = inv[mod % i] * (mod - mod / i) % mod;
    }
    F[0] = 1;
    IF[0] = 1;
    for (int i = 1; i <= n; i++) {
        F[i] = F[i - 1] * i % mod;
        IF[i] = IF[i - 1] * inv[i] % mod;
    }
    cout << C(n - 1, L) * C(n - 1, L - 1) % mod * inv[n - 1] % mod << endl;
}
0