結果
問題 | No.1103 Directed Length Sum |
ユーザー | chocono2230 |
提出日時 | 2020-07-03 22:21:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 914 ms / 3,000 ms |
コード長 | 2,292 bytes |
コンパイル時間 | 1,770 ms |
コンパイル使用メモリ | 172,064 KB |
実行使用メモリ | 108,872 KB |
最終ジャッジ日時 | 2024-09-17 03:14:48 |
合計ジャッジ時間 | 10,350 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 671 ms
108,872 KB |
testcase_03 | AC | 435 ms
34,844 KB |
testcase_04 | AC | 475 ms
27,776 KB |
testcase_05 | AC | 914 ms
45,568 KB |
testcase_06 | AC | 283 ms
19,156 KB |
testcase_07 | AC | 59 ms
7,040 KB |
testcase_08 | AC | 91 ms
9,036 KB |
testcase_09 | AC | 40 ms
5,760 KB |
testcase_10 | AC | 142 ms
11,364 KB |
testcase_11 | AC | 518 ms
29,936 KB |
testcase_12 | AC | 284 ms
19,404 KB |
testcase_13 | AC | 143 ms
11,420 KB |
testcase_14 | AC | 28 ms
5,376 KB |
testcase_15 | AC | 245 ms
15,872 KB |
testcase_16 | AC | 666 ms
33,280 KB |
testcase_17 | AC | 670 ms
34,560 KB |
testcase_18 | AC | 135 ms
11,264 KB |
testcase_19 | AC | 555 ms
30,592 KB |
testcase_20 | AC | 43 ms
6,144 KB |
testcase_21 | AC | 85 ms
8,704 KB |
testcase_22 | AC | 447 ms
25,600 KB |
testcase_23 | AC | 239 ms
16,648 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--) #define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++) #define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--) #define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++) #define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++) #define ALL(x) x.begin(), x.end() using ll = long long; using namespace std; // auto mod int // https://youtu.be/L8grWxBlIZ4?t=9858 // https://youtu.be/ERZuLAxZffQ?t=4807 : optimize // https://youtu.be/8uowVvQ_-Mo?t=1329 : division const int 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; } }; void dfs(vector<vector<int>> &tree, int now, int nt, mint &ans){ mint add = (ll)nt * (nt+1)/2; ans += add; if(tree.at(now).size() == 0){ return ; } for(auto i : tree.at(now)){ dfs(tree, i, nt+1, ans); } return ; } int main(){ int n; cin >> n; vector<vector<int>> tree(n, vector<int>()); vector<int> indeg(n, 0); rep(i, n-1){ int a, b; cin >> a >> b; a--; b--; tree.at(a).push_back(b); indeg.at(b)++; } int root = -1; rep(i, n) if(indeg.at(i) == 0){ root = i; break; } mint ans = 0; dfs(tree, root, 0, ans); cout << ans.x << endl; return 0; }