結果
問題 | No.1418 Sum of Sum of Subtree Size |
ユーザー | Mister |
提出日時 | 2021-03-05 21:40:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 1,631 bytes |
コンパイル時間 | 828 ms |
コンパイル使用メモリ | 79,104 KB |
実行使用メモリ | 22,400 KB |
最終ジャッジ日時 | 2024-10-07 01:07:15 |
合計ジャッジ時間 | 2,787 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 60 ms
9,728 KB |
testcase_04 | AC | 62 ms
9,728 KB |
testcase_05 | AC | 62 ms
9,728 KB |
testcase_06 | AC | 56 ms
9,728 KB |
testcase_07 | AC | 58 ms
9,728 KB |
testcase_08 | AC | 35 ms
7,680 KB |
testcase_09 | AC | 17 ms
5,248 KB |
testcase_10 | AC | 18 ms
5,504 KB |
testcase_11 | AC | 10 ms
5,248 KB |
testcase_12 | AC | 27 ms
6,784 KB |
testcase_13 | AC | 32 ms
7,296 KB |
testcase_14 | AC | 34 ms
7,424 KB |
testcase_15 | AC | 25 ms
6,400 KB |
testcase_16 | AC | 4 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 47 ms
9,088 KB |
testcase_19 | AC | 9 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 24 ms
6,400 KB |
testcase_22 | AC | 20 ms
5,888 KB |
testcase_23 | AC | 3 ms
5,248 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 4 ms
5,248 KB |
testcase_30 | AC | 3 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 12 ms
7,552 KB |
testcase_34 | AC | 54 ms
22,400 KB |
testcase_35 | AC | 23 ms
11,392 KB |
testcase_36 | AC | 5 ms
5,248 KB |
testcase_37 | AC | 33 ms
11,264 KB |
testcase_38 | AC | 29 ms
10,580 KB |
testcase_39 | AC | 1 ms
5,248 KB |
testcase_40 | AC | 1 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
ソースコード
#line 2 "/Users/tiramister/CompetitiveProgramming/Cpp/CppLibrary/Graph/graph.hpp" #include <vector> template <class Cost = int> struct Edge { int src, dst; Cost cost; Edge() = default; Edge(int src, int dst, Cost cost = 1) : src(src), dst(dst), cost(cost){}; bool operator<(const Edge<Cost>& e) const { return cost < e.cost; } bool operator>(const Edge<Cost>& e) const { return cost > e.cost; } }; template <class Cost = int> struct Graph : public std::vector<std::vector<Edge<Cost>>> { using std::vector<std::vector<Edge<Cost>>>::vector; void span(bool direct, int src, int dst, Cost cost = 1) { (*this)[src].emplace_back(src, dst, cost); if (!direct) (*this)[dst].emplace_back(dst, src, cost); } }; #line 2 "main.cpp" #include <iostream> #line 4 "main.cpp" using namespace std; using lint = long long; void solve() { int n; cin >> n; Graph<> graph(n); for (int i = n - 1; i--;) { int u, v; cin >> u >> v; graph.span(false, --u, --v); } lint ans = 0; auto dfs = [&](auto&& f, int v, int p) -> lint { vector<lint> cz; lint sz = 1; for (auto e : graph[v]) { int u = e.dst; if (u == p) continue; lint c = f(f, u, v); cz.push_back(c); sz += c; } cz.push_back(n - sz); ans += n; for (auto c : cz) ans += c * (n - c); return sz; }; dfs(dfs, 0, -1); cout << ans << "\n"; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); solve(); return 0; }