結果

問題 No.827 総神童数
ユーザー hamrayhamray
提出日時 2019-09-13 23:02:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 5,787 bytes
コンパイル時間 2,856 ms
コンパイル使用メモリ 157,768 KB
実行使用メモリ 26,396 KB
最終ジャッジ日時 2023-09-17 15:10:15
合計ジャッジ時間 7,273 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,548 KB
testcase_01 AC 4 ms
7,552 KB
testcase_02 AC 5 ms
7,760 KB
testcase_03 AC 4 ms
7,652 KB
testcase_04 AC 4 ms
7,756 KB
testcase_05 AC 4 ms
7,608 KB
testcase_06 AC 4 ms
7,640 KB
testcase_07 AC 4 ms
7,548 KB
testcase_08 AC 4 ms
7,632 KB
testcase_09 AC 110 ms
26,396 KB
testcase_10 AC 36 ms
13,492 KB
testcase_11 AC 6 ms
8,068 KB
testcase_12 AC 16 ms
10,652 KB
testcase_13 AC 83 ms
23,028 KB
testcase_14 AC 7 ms
8,284 KB
testcase_15 AC 33 ms
13,768 KB
testcase_16 AC 88 ms
19,768 KB
testcase_17 AC 108 ms
22,592 KB
testcase_18 AC 42 ms
15,204 KB
testcase_19 AC 132 ms
17,060 KB
testcase_20 AC 90 ms
14,692 KB
testcase_21 AC 61 ms
12,808 KB
testcase_22 AC 101 ms
15,288 KB
testcase_23 AC 5 ms
7,516 KB
testcase_24 AC 113 ms
15,980 KB
testcase_25 AC 78 ms
14,052 KB
testcase_26 AC 118 ms
16,032 KB
testcase_27 AC 72 ms
13,320 KB
testcase_28 AC 70 ms
13,336 KB
testcase_29 AC 51 ms
12,260 KB
testcase_30 AC 17 ms
9,156 KB
testcase_31 AC 39 ms
11,204 KB
testcase_32 AC 37 ms
11,108 KB
testcase_33 AC 128 ms
16,900 KB
testcase_34 AC 120 ms
16,172 KB
testcase_35 AC 36 ms
11,272 KB
testcase_36 AC 59 ms
12,664 KB
testcase_37 AC 82 ms
14,036 KB
testcase_38 AC 132 ms
16,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define M_PI       3.14159265358979323846

using namespace std;

//conversion
//------------------------------------------
inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; }
template<class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); }
inline int readInt() { int x; scanf("%d", &x); return x; }

//typedef
//------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef pair<int, PII> TIII;
typedef long long LL;
typedef unsigned long long ULL;
typedef vector<LL> VLL;
typedef vector<VLL> VVLL;


//container util

//------------------------------------------
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define SQ(a) ((a)*(a))
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define SORT(c) sort((c).begin(),(c).end())

//repetition
//------------------------------------------
#define FOR(i,s,n) for(int i=s;i<(int)n;++i)
#define REP(i,n) FOR(i,0,n)
#define MOD 1000000007

#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()



typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
const double EPS = 1E-8;

#define chmin(x,y) x=min(x,y)
#define chmax(x,y) x=max(x,y)
const int INF = 100000000;

struct Edge {
    int to, from;
    ll cost;
    Edge(int from, int to, ll cost): from(from), to(to), cost(cost) {}
};

struct UnionFind {
    vector<int> data;
    UnionFind(int size) : data(size, -1) { }
    bool unionSet(int x, int y) {
        x = root(x); y = root(y);
        if (x != y) {
            if (data[y] < data[x]) swap(x, y);
            data[x] += data[y]; data[y] = x;
        }
        return x != y;
    }
    bool findSet(int x, int y) {
        return root(x) == root(y);
    }
    int root(int x) {
        return data[x] < 0 ? x : data[x] = root(data[x]);
    }
    int size(int x) {
        return -data[root(x)];
    }
};

typedef vector<vector<Edge>> AdjList;
AdjList graph;

ll mod_pow(ll x, ll n, ll mod){
    ll res = 1;
    bool c = false;
    while(n){
        if(n&1) res = res * x;

        if(res > mod){
            c = true;
            res %= mod;
        }
        x = x * x %mod;
        n >>= 1;
    }
    if(c) return mod;
    return res;
}
#define SIEVE_SIZE 10000+10
bool sieve[SIEVE_SIZE];
void make_sieve(){
    for(int i=0; i<SIEVE_SIZE; ++i) sieve[i] = true;
    sieve[0] = sieve[1] = false;
    for(int i=2; i*i<SIEVE_SIZE; ++i) if(sieve[i]) for(int j=2; i*j<SIEVE_SIZE; ++j) sieve[i*j] = false;
}

bool isprime(ll n){
    for(ll i=2; i*i<=n; ++i) if(n%i==0) return false;
    return true;
}

template<typename T>
vector<T> gauss_jordan(const vector<vector<T>>& A, const vector<T>& b){
    int n = A.size();
    vector<vector<T>> B(n, vector<T>(n+1));

    for(int i=0; i<n; ++i){
        for(int j=0; j<n; ++j){
            B[i][j] = A[i][j];
        }
    }

    for(int i=0; i<n; ++i) B[i][n] = b[i];

    for(int i=0; i<n; ++i){
        int pivot = i;
        for(int j=i; j<n; ++j){
            if(abs(B[j][i]) > abs(B[pivot][i])) pivot = j;
        }
        swap(B[i], B[pivot]);

        if(abs(B[i][i]) < EPS) return vector<T>(); //解なし

        for(int j=i+1; j<=n; ++j) B[i][j] /= B[i][i];
        for(int j=0; j<n; ++j){
            if(i != j){
                for(int k=i+1; k<=n; ++k) B[j][k] -= B[i][j] * B[i][k];
            }
        }
    }

    vector<T> x(n);

    for(int i=0; i<n; ++i) x[i] = B[i][n];
    return x;
    
}

ll GCD(ll a, ll b){
    if(a<b) swap(a,b);
    if(b == 0) return a;
    return GCD(b, a%b);
}

const int MAX = 510000;
long long fac[MAX], finv[MAX], inv[MAX];

// テーブルを作る前処理
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}

// 二項係数計算
long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}

typedef vector<ll> vec;
typedef vector<vec> mat;

mat mul(mat &A, mat &B) {
    mat C(A.size(), vec((int)B[0].size()));
    for(int i=0; i<A.size(); ++i){
        for(int k=0; k<B.size(); ++k){
            for(int j=0; j<B[0].size(); ++j){
                C[i][j] = (C[i][j] + A[i][k] * B[k][j] %MOD) % MOD;
            }
        }
    }
    return C;
}
mat mat_pow(mat A, ll n) {
    mat B(A.size(), vec((int)A.size()));

    for(int i=0; i<A.size(); ++i){
        B[i][i] = 1;
    }

    while(n > 0) {
        if(n & 1) B = mul(B, A);
        A = mul(A, A);
        n >>= 1;
    }
    return B;
}

vector<vector<int>> G(200010);
int dep[200010];

void dfs(int cur, int prev=-1, int d = 1){
    dep[d]++;
    for(auto u: G[cur]){
        if(u == prev) continue;
        dfs(u, cur, d+1);
    }
}
int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    //cout << fixed << setprecision(10);

    int N; cin >> N;
    vector<ll> L(N+1, 1), R(N+1, 1);
    for(int i=1;i<=N;i++){ L[i] = L[i-1] * (ll)(i == 1 ? 1 : i-1) % MOD; }
    for(int i=N;i>=1;i--){ R[i-1] = R[i] * (ll)(i) % MOD; }
    
    for(int i=0;i<N-1;i++){
        int v, u; cin >> v >> u;
        v--; u--;
        G[u].PB(v); G[v].PB(u);
    }

    dfs(0);
    ll ans = 0;
    for(int d=1; d<=N; d++) { (ans += (ll)dep[d] * (L[d] * R[d] % MOD) % MOD) %= MOD;}
    cout << ans << endl;
    return 0;
}
0