結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー simansiman
提出日時 2022-12-20 10:56:49
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 3,025 bytes
コンパイル時間 1,323 ms
コンパイル使用メモリ 143,608 KB
実行使用メモリ 29,456 KB
最終ジャッジ日時 2024-04-29 02:43:32
合計ジャッジ時間 8,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
15,988 KB
testcase_01 AC 8 ms
16,000 KB
testcase_02 AC 7 ms
15,872 KB
testcase_03 AC 8 ms
16,000 KB
testcase_04 AC 10 ms
16,260 KB
testcase_05 AC 21 ms
16,896 KB
testcase_06 AC 21 ms
17,140 KB
testcase_07 AC 16 ms
16,640 KB
testcase_08 AC 23 ms
17,152 KB
testcase_09 AC 23 ms
17,024 KB
testcase_10 AC 21 ms
17,024 KB
testcase_11 AC 20 ms
17,024 KB
testcase_12 AC 18 ms
16,896 KB
testcase_13 AC 8 ms
16,056 KB
testcase_14 AC 194 ms
25,204 KB
testcase_15 AC 192 ms
24,928 KB
testcase_16 AC 177 ms
24,320 KB
testcase_17 AC 131 ms
22,348 KB
testcase_18 AC 229 ms
26,240 KB
testcase_19 AC 278 ms
27,656 KB
testcase_20 AC 264 ms
27,904 KB
testcase_21 AC 267 ms
27,648 KB
testcase_22 AC 266 ms
27,904 KB
testcase_23 AC 262 ms
27,796 KB
testcase_24 AC 276 ms
27,740 KB
testcase_25 AC 271 ms
27,720 KB
testcase_26 AC 272 ms
27,776 KB
testcase_27 AC 270 ms
27,904 KB
testcase_28 AC 274 ms
27,776 KB
testcase_29 AC 162 ms
27,280 KB
testcase_30 AC 165 ms
26,624 KB
testcase_31 AC 131 ms
29,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_V = 500000;

struct Edge {
  int to;
  ll cost;

  Edge(int to = -1, ll cost = -1) {
    this->to = to;
    this->cost = cost;
  }
};

vector <Edge> E[MAX_V];

struct Node {
  int v;
  ll cost;

  Node(int v = -1, ll cost = -1) {
    this->v = v;
    this->cost = cost;
  }
};

class Tree {
public:
  int nodeCnt;

  Tree(int nodeCnt = MAX_V) {
    this->nodeCnt = nodeCnt;
  }

  void addEdge(int from, int to, ll cost = 1) {
    E[from].push_back(Edge(to, cost));
  }

  vector<int> diameter(int from = 0) {
    int u = findFarthestVertex(from);
    int v = findFarthestVertex(u);

    return findPath(u, v);
  }

  ll calcPathCost(vector<int> &path) {
    ll totalCost = 0;

    for (int i = 0; i < path.size() - 1; ++i) {
      int u = path[i];
      int v = path[i + 1];

      for (int j = 0; j < E[u].size(); ++j) {
        if (E[u][j].to == v) {
          totalCost += E[u][j].cost;
        }
      }
    }

    return totalCost;
  }

  vector<int> findPath(int from, int to) {
    queue <Node> que;
    que.push(Node(from, 0));
    int parent[nodeCnt];
    bool visited[nodeCnt];
    memset(visited, false, sizeof(visited));

    while (!que.empty()) {
      Node node = que.front();
      que.pop();

      visited[node.v] = true;

      if (node.v == to) {
        vector<int> path;
        int cur = node.v;

        while (cur != from) {
          path.push_back(cur);
          cur = parent[cur];
        }

        path.push_back(from);
        reverse(path.begin(), path.end());

        return path;
      }

      for (int i = 0; i < E[node.v].size(); ++i) {
        Edge edge = E[node.v][i];

        if (visited[edge.to]) continue;

        parent[edge.to] = node.v;
        que.push(Node(edge.to, node.cost + edge.cost));
      }
    }

    return vector<int>();
  }

private:

  int findFarthestVertex(int from) {
    queue <Node> que;
    que.push(Node(from, 0));
    bool visited[MAX_V];
    memset(visited, false, sizeof(visited));

    ll maxCost = INT_MIN;
    int farthestV = -1;

    while (!que.empty()) {
      Node node = que.front();
      que.pop();

      if (visited[node.v]) continue;
      visited[node.v] = true;

      if (maxCost < node.cost) {
        maxCost = node.cost;
        farthestV = node.v;
      }

      for (int i = 0; i < E[node.v].size(); ++i) {
        Edge edge = E[node.v][i];

        Node next(edge.to, node.cost + edge.cost);
        que.push(next);
      }
    }

    return farthestV;
  }
};

int main() {
  int N;
  cin >> N;

  Tree tree;
  int a, b;
  for (int i = 0; i < N - 1; ++i) {
    cin >> a >> b;
    --a;
    --b;

    tree.addEdge(a, b);
    tree.addEdge(b, a);
  }

  vector<int> path = tree.diameter();
  int ans = 2 * (N - 1) - path.size() + 1;

  cout << ans << endl;

  return 0;
}
0