結果

問題 No.1817 Reversed Edges
ユーザー bokusunnybokusunny
提出日時 2022-01-21 21:41:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 209,076 KB
実行使用メモリ 13,296 KB
最終ジャッジ日時 2024-05-04 12:19:05
合計ジャッジ時間 6,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 148 ms
8,448 KB
testcase_08 AC 67 ms
5,888 KB
testcase_09 AC 132 ms
8,320 KB
testcase_10 AC 78 ms
6,272 KB
testcase_11 AC 108 ms
6,912 KB
testcase_12 AC 166 ms
9,216 KB
testcase_13 AC 167 ms
9,200 KB
testcase_14 AC 161 ms
9,216 KB
testcase_15 AC 158 ms
9,216 KB
testcase_16 AC 165 ms
9,192 KB
testcase_17 AC 160 ms
9,344 KB
testcase_18 AC 158 ms
9,216 KB
testcase_19 AC 162 ms
9,216 KB
testcase_20 AC 157 ms
9,216 KB
testcase_21 AC 153 ms
9,216 KB
testcase_22 AC 140 ms
9,488 KB
testcase_23 AC 136 ms
9,472 KB
testcase_24 AC 144 ms
13,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define bokusunny ios::sync_with_stdio(false), cin.tie(nullptr);

struct Edge {
  int to;

  Edge(const int to) : to(to) {}
};
using Graph = vector<vector<Edge>>;

void solve() {
  int N;
  cin >> N;
  Graph G(N);
  for (int i = 0; i < N - 1; i++) {
    int a, b;
    cin >> a >> b;
    a--, b--;
    G[a].emplace_back(b);
    G[b].emplace_back(a);
  }

  vector<int> ans(N);
  auto dfs1 = [&](auto dfs1, int u, int p) -> int {
    int res = 0;
    for (auto &[v] : G[u]) {
      if (v == p) continue;
      res += dfs1(dfs1, v, u) + (int)(u > v);
    }
    return res;
  };
  ans[0] = dfs1(dfs1, 0, -1);
  auto dfs2 = [&](auto dfs2, int u, int p) -> void {
    for (auto &[v] : G[u]) {
      if (v == p) continue;
      if (v > u) {
        ans[v] = ans[u] + 1;
      } else {
        ans[v] = ans[u] - 1;
      }
      dfs2(dfs2, v, u);
    }
  };
  dfs2(dfs2, 0, -1);

  for (auto &a : ans) cout << a << endl;
}

int main() {
  bokusunny;
  solve();

  return 0;
}
0