結果
問題 | No.1103 Directed Length Sum |
ユーザー | cn_449 |
提出日時 | 2020-07-03 22:14:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,635 bytes |
コンパイル時間 | 1,098 ms |
コンパイル使用メモリ | 119,564 KB |
実行使用メモリ | 159,464 KB |
最終ジャッジ日時 | 2024-09-17 02:53:19 |
合計ジャッジ時間 | 7,187 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
50,108 KB |
testcase_01 | AC | 21 ms
50,068 KB |
testcase_02 | WA | - |
testcase_03 | AC | 177 ms
56,076 KB |
testcase_04 | AC | 285 ms
59,260 KB |
testcase_05 | AC | 531 ms
65,884 KB |
testcase_06 | AC | 170 ms
55,984 KB |
testcase_07 | AC | 48 ms
51,536 KB |
testcase_08 | AC | 64 ms
52,320 KB |
testcase_09 | AC | 38 ms
50,924 KB |
testcase_10 | AC | 81 ms
53,052 KB |
testcase_11 | AC | 282 ms
60,020 KB |
testcase_12 | AC | 167 ms
56,156 KB |
testcase_13 | AC | 89 ms
53,108 KB |
testcase_14 | AC | 34 ms
50,780 KB |
testcase_15 | AC | 130 ms
54,676 KB |
testcase_16 | AC | 329 ms
61,316 KB |
testcase_17 | AC | 360 ms
61,780 KB |
testcase_18 | AC | 83 ms
52,976 KB |
testcase_19 | AC | 326 ms
60,288 KB |
testcase_20 | AC | 42 ms
51,092 KB |
testcase_21 | AC | 59 ms
52,044 KB |
testcase_22 | AC | 254 ms
58,472 KB |
testcase_23 | AC | 131 ms
55,140 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <queue> #include <stack> #include <set> #include <map> #include <iomanip> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cassert> #include <complex> #include <stdio.h> #include <time.h> #include <numeric> #include <random> #include <unordered_map> #include <unordered_set> #define all(a) a.begin(),a.end() #define rep(i, n) for (ll i = 0; i < (n); i++) #define pb push_back #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll, ll> P; typedef complex<ld> com; constexpr int inf = 1000000010; constexpr ll INF = 1000000000000000010; constexpr ld eps = 1e-12; constexpr ld pi = 3.141592653589793238; template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } vector<vector<int>> graph(1000010, vector<int>()); vector<ll> cnt(1000010), sz(1000010, 1), vis(1000010); void dfs(int n) { if (vis[n]) return; for (int i : graph[n]) { dfs(i); cnt[n] += cnt[i]; sz[n] += sz[i]; } cnt[n] += sz[n] - 1; vis[n] = true; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int n; cin >> n; rep(i, n - 1) { int u, v; cin >> u >> v; u--; v--; graph[u].pb(v); } rep(i, n) dfs(i); ll ans = 0; rep(i, n) ans += cnt[i]; cout << ans << '\n'; }