結果
問題 | No.1103 Directed Length Sum |
ユーザー | Mister |
提出日時 | 2020-08-01 08:22:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 516 ms / 3,000 ms |
コード長 | 2,807 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 93,512 KB |
実行使用メモリ | 155,536 KB |
最終ジャッジ日時 | 2024-07-07 14:04:15 |
合計ジャッジ時間 | 6,395 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 340 ms
155,536 KB |
testcase_03 | AC | 164 ms
34,868 KB |
testcase_04 | AC | 243 ms
27,776 KB |
testcase_05 | AC | 516 ms
45,812 KB |
testcase_06 | AC | 146 ms
19,216 KB |
testcase_07 | AC | 27 ms
7,040 KB |
testcase_08 | AC | 46 ms
9,088 KB |
testcase_09 | AC | 17 ms
5,760 KB |
testcase_10 | AC | 63 ms
11,264 KB |
testcase_11 | AC | 265 ms
29,912 KB |
testcase_12 | AC | 137 ms
19,328 KB |
testcase_13 | AC | 68 ms
11,484 KB |
testcase_14 | AC | 14 ms
5,376 KB |
testcase_15 | AC | 101 ms
15,744 KB |
testcase_16 | AC | 320 ms
33,280 KB |
testcase_17 | AC | 332 ms
34,560 KB |
testcase_18 | AC | 62 ms
11,124 KB |
testcase_19 | AC | 281 ms
30,592 KB |
testcase_20 | AC | 22 ms
6,144 KB |
testcase_21 | AC | 38 ms
8,576 KB |
testcase_22 | AC | 211 ms
25,604 KB |
testcase_23 | AC | 112 ms
16,596 KB |
ソースコード
#include <iostream> #include <vector> #include <functional> template <int MOD> struct ModInt { using lint = long long; int val; // constructor ModInt(lint v = 0) : val(v % MOD) { if (val < 0) val += MOD; }; // unary operator ModInt operator+() const { return ModInt(val); } ModInt operator-() const { return ModInt(MOD - val); } ModInt inv() const { return this->pow(MOD - 2); } // arithmetic ModInt operator+(const ModInt& x) const { return ModInt(*this) += x; } ModInt operator-(const ModInt& x) const { return ModInt(*this) -= x; } ModInt operator*(const ModInt& x) const { return ModInt(*this) *= x; } ModInt operator/(const ModInt& x) const { return ModInt(*this) /= x; } ModInt pow(lint n) const { auto x = ModInt(1); auto b = *this; while (n > 0) { if (n & 1) x *= b; n >>= 1; b *= b; } return x; } // compound assignment ModInt& operator+=(const ModInt& x) { if ((val += x.val) >= MOD) val -= MOD; return *this; } ModInt& operator-=(const ModInt& x) { if ((val -= x.val) < 0) val += MOD; return *this; } ModInt& operator*=(const ModInt& x) { val = lint(val) * x.val % MOD; return *this; } ModInt& operator/=(const ModInt& x) { return *this *= x.inv(); } // compare bool operator==(const ModInt& b) const { return val == b.val; } bool operator!=(const ModInt& b) const { return val != b.val; } bool operator<(const ModInt& b) const { return val < b.val; } bool operator<=(const ModInt& b) const { return val <= b.val; } bool operator>(const ModInt& b) const { return val > b.val; } bool operator>=(const ModInt& b) const { return val >= b.val; } // I/O friend std::istream& operator>>(std::istream& is, ModInt& x) noexcept { return is >> x.val; } friend std::ostream& operator<<(std::ostream& os, const ModInt& x) noexcept { return os << x.val; } }; constexpr int MOD = 1000000007; using mint = ModInt<MOD>; void solve() { int n; std::cin >> n; std::vector<std::vector<int>> to(n); std::vector<int> indeg(n, 0); for (int i = 0; i < n - 1; ++i) { int u, v; std::cin >> u >> v; to[--u].push_back(--v); ++indeg[v]; } int r = 0; while (indeg[r] != 0) ++r; mint ans = 0; std::function<int(int, int)> dfs = [&](int v, int d) -> int { int sz = 0; for (auto u : to[v]) { sz += dfs(u, d + 1); } ans += mint(sz) * d; return sz + 1; }; dfs(r, 1); std::cout << ans << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }