結果

問題 No.872 All Tree Path
ユーザー tnakao0123tnakao0123
提出日時 2019-09-04 17:42:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 114 ms / 3,000 ms
コード長 1,587 bytes
コンパイル時間 876 ms
コンパイル使用メモリ 92,580 KB
実行使用メモリ 19,164 KB
最終ジャッジ日時 2024-06-09 04:48:11
合計ジャッジ時間 3,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
19,140 KB
testcase_01 AC 104 ms
19,072 KB
testcase_02 AC 106 ms
18,848 KB
testcase_03 AC 69 ms
17,600 KB
testcase_04 AC 3 ms
10,056 KB
testcase_05 AC 112 ms
19,100 KB
testcase_06 AC 113 ms
19,012 KB
testcase_07 AC 114 ms
19,164 KB
testcase_08 AC 13 ms
10,692 KB
testcase_09 AC 12 ms
11,416 KB
testcase_10 AC 13 ms
11,340 KB
testcase_11 AC 13 ms
10,820 KB
testcase_12 AC 12 ms
11,080 KB
testcase_13 AC 3 ms
10,052 KB
testcase_14 AC 4 ms
9,668 KB
testcase_15 AC 3 ms
9,412 KB
testcase_16 AC 3 ms
9,924 KB
testcase_17 AC 4 ms
11,384 KB
testcase_18 AC 4 ms
9,796 KB
testcase_19 AC 3 ms
10,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:49:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:53:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |     scanf("%d%d%d", &u, &v, &w);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 872.cc:  No.872 All Tree Path - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

typedef long long ll;
typedef queue<int> qi;
typedef pair<int,int> pii;
typedef vector<pii> vpii;

/* global variables */

vpii nbrs[MAX_N];
int cns[MAX_N], ps[MAX_N], pws[MAX_N], ss[MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);

  for (int i = 1; i < n; i++) {
    int u, v, w;
    scanf("%d%d%d", &u, &v, &w);
    u--, v--;
    nbrs[u].push_back(pii(v, w));
    nbrs[v].push_back(pii(u, w));
  }

  ps[0] = -1;
  qi q;
  q.push(0);

  while (! q.empty()) {
    int u = q.front(); q.pop();
    int &up = ps[u];
    vpii &nbru = nbrs[u];

    for (vpii::iterator vit = nbru.begin(); vit != nbru.end(); vit++) {
      int &v = vit->first;
      if (v != up) {
	cns[u]++;
	ps[v] = u;
	pws[v] = vit->second;
	q.push(v);
      }
    }
  }

  for (int u = 0; u < n; u++)
    if (cns[u] == 0) q.push(u);

  ll sum = 0;
  while (! q.empty()) {
    int u = q.front(); q.pop();
    int &up = ps[u];

    ss[u]++;
    sum += (ll)pws[u] * ss[u] * (n - ss[u]);

    if (up >= 0) {
      ss[up] += ss[u];
      if (--cns[up] == 0) q.push(up);
    }
  }

  printf("%lld\n", sum * 2);
  return 0;
}
0