結果
問題 | No.1103 Directed Length Sum |
ユーザー | cn_449 |
提出日時 | 2020-07-03 23:05:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,856 bytes |
コンパイル時間 | 1,371 ms |
コンパイル使用メモリ | 121,364 KB |
実行使用メモリ | 151,832 KB |
最終ジャッジ日時 | 2024-09-17 04:45:39 |
合計ジャッジ時間 | 7,933 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
42,292 KB |
testcase_01 | AC | 19 ms
42,340 KB |
testcase_02 | WA | - |
testcase_03 | AC | 175 ms
51,584 KB |
testcase_04 | AC | 322 ms
52,892 KB |
testcase_05 | AC | 584 ms
60,600 KB |
testcase_06 | AC | 207 ms
49,176 KB |
testcase_07 | AC | 50 ms
43,952 KB |
testcase_08 | AC | 76 ms
44,836 KB |
testcase_09 | AC | 37 ms
43,404 KB |
testcase_10 | AC | 98 ms
45,776 KB |
testcase_11 | AC | 359 ms
53,876 KB |
testcase_12 | AC | 206 ms
49,244 KB |
testcase_13 | AC | 99 ms
45,896 KB |
testcase_14 | AC | 32 ms
42,916 KB |
testcase_15 | AC | 165 ms
47,708 KB |
testcase_16 | AC | 398 ms
55,132 KB |
testcase_17 | AC | 419 ms
55,776 KB |
testcase_18 | AC | 101 ms
45,700 KB |
testcase_19 | AC | 368 ms
54,116 KB |
testcase_20 | AC | 41 ms
43,424 KB |
testcase_21 | AC | 64 ms
44,620 KB |
testcase_22 | AC | 296 ms
51,988 KB |
testcase_23 | AC | 182 ms
47,932 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 int long long #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); void dfs(int n) { for (int i : graph[n]) { dfs(i); cnt[n] += cnt[i]; sz[n] += sz[i]; } cnt[n] += sz[n] - 1; } signed main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int n; cin >> n; graph.resize(n); cnt.resize(n); sz.resize(n); vector<bool> a(n); rep(i, n - 1) { int u, v; cin >> u >> v; u--; v--; graph[u].pb(v); a[v] = true; } int root = -1; int s = 0; rep(i, n) { if (!a[i]) root = i, s++; } assert(s == 1); dfs(root); assert(0 <= root && root < n); ll ans = 0; rep(i, n) { ans += cnt[i]; assert(sz[i] >= 1); assert(cnt[i] >= 0); } cout << ans << '\n'; }