結果
問題 | No.1103 Directed Length Sum |
ユーザー | Asdf_QwertyZ |
提出日時 | 2020-07-05 20:53:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,072 ms / 3,000 ms |
コード長 | 3,207 bytes |
コンパイル時間 | 860 ms |
コンパイル使用メモリ | 82,888 KB |
実行使用メモリ | 143,940 KB |
最終ジャッジ日時 | 2024-09-22 21:24:39 |
合計ジャッジ時間 | 11,832 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
42,856 KB |
testcase_01 | AC | 14 ms
43,052 KB |
testcase_02 | AC | 761 ms
143,940 KB |
testcase_03 | AC | 495 ms
58,200 KB |
testcase_04 | AC | 595 ms
58,788 KB |
testcase_05 | AC | 1,072 ms
68,400 KB |
testcase_06 | AC | 386 ms
53,144 KB |
testcase_07 | AC | 86 ms
45,572 KB |
testcase_08 | AC | 128 ms
48,736 KB |
testcase_09 | AC | 55 ms
44,936 KB |
testcase_10 | AC | 183 ms
49,680 KB |
testcase_11 | AC | 652 ms
59,940 KB |
testcase_12 | AC | 386 ms
53,112 KB |
testcase_13 | AC | 187 ms
49,764 KB |
testcase_14 | AC | 45 ms
43,524 KB |
testcase_15 | AC | 288 ms
53,724 KB |
testcase_16 | AC | 737 ms
63,264 KB |
testcase_17 | AC | 767 ms
63,688 KB |
testcase_18 | AC | 180 ms
49,720 KB |
testcase_19 | AC | 670 ms
62,088 KB |
testcase_20 | AC | 63 ms
44,624 KB |
testcase_21 | AC | 114 ms
45,828 KB |
testcase_22 | AC | 534 ms
57,844 KB |
testcase_23 | AC | 316 ms
54,068 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <cassert> #include <algorithm> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <vector> #define repi(i,a,b) for(ll i=(a);i<(b);++i) #define rep(i,a) repi(i,0,a) #define repdi(i,a,b) for(ll i=(a)-1;i>=(b);--i) #define repd(i,a) repdi(i,a,0) #define itr(it,a) for( auto it = (a).begin(); it != (a).end(); ++it ) #define all(a) (a).begin(), (a).end() #define rall(a) (a).rbegin(), (a).rend() using ll = long long; using P = std::pair<ll, ll>; constexpr ll INF = 1ll<<60; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class S, class T> std::ostream& operator<< ( std::ostream& out, const std::pair<S,T>& a ) { std::cout << '(' << a.first << ", " << a.second << ')'; return out; } template<class T> std::ostream &operator<< ( std::ostream& out, const std::vector<T>& a ) { std::cout << '['; rep( i, a.size() ){ std::cout << a[i]; if( i != a.size()-1 ) std::cout << ", "; } std::cout << ']'; return out; } const ll mod = 1000000007; struct mint { ll x; // typedef long long ll; mint(ll x=0):x((x%mod+mod)%mod){} mint operator-() const { return mint(-x);} mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod-a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { mint res(*this); return res+=a; } mint operator-(const mint a) const { mint res(*this); return res-=a; } mint operator*(const mint a) const { mint res(*this); return res*=a; } mint pow(ll t) const { if (!t) return 1; mint a = pow(t>>1); a *= a; if (t&1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod-2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint res(*this); return res/=a; } }; struct combination { std::vector<mint> fact, ifact; combination(int n):fact(n+1),ifact(n+1) { assert(n < mod); fact[0] = 1; for (int i = 1; i <= n; ++i) fact[i] = fact[i-1]*i; ifact[n] = fact[n].inv(); for (int i = n; i >= 1; --i) ifact[i-1] = ifact[i]*i; } mint operator()(int n, int k) { if (k < 0 || k > n) return 0; return fact[n]*ifact[k]*ifact[n-k]; } }; ll N; std::vector<ll> G[1000010]; mint dp[1000010]; mint subtree[1000010]; void dfs( ll v, ll p = -1 ) { subtree[v] = 1; for( auto u : G[v] ) if( u != p ) { dfs( u, v ); subtree[v] += subtree[u]; dp[v] += dp[u]+subtree[u]; } return; } ll deg[1000010]; int main() { std::cin >> N; rep( i, N-1 ) { ll A, B; std::cin >> A >> B; --A; --B; G[A].emplace_back( B ); ++deg[B]; } rep( i, N ) if( !deg[i] ) dfs( i ); mint ans = 0; rep( i, N ) { ans += dp[i]; } std::cout << ans.x << std::endl; return 0; }