結果

問題 No.994 ばらばらコイン
ユーザー batsumarubatsumaru
提出日時 2020-02-21 21:55:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 977 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 176,032 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-08 21:38:41
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 81 ms
14,208 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 58 ms
7,936 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
#define DUMP(x) cout << #x << " = " << (x) << endl;
#define FOR(i, m, n) for (ll i = m; i < n; i++)
#define IFOR(i, m, n) for (ll i = n - 1; i >= m; i--)
#define REP(i, n) FOR(i, 0, n)
#define IREP(i, n) IFOR(i, 0, n)
#define FOREACH(x, a) for (auto&(x) : (a))
#define ALL(v) (v).begin(), (v).end()
#define SZ(x) ll(x.size())

ll n, k;
vector<vector<ll>> to;
vector<ll> dist;

void dfs(ll cv, ll par, ll d) {
  dist[cv] = d;
  FOREACH(nv, to[cv]) {
    if (nv == par) {
      continue;
    }
    dfs(nv, cv, d + 1);
  }
}

int main() {
  cin >> n >> k;
  to = vector<vector<ll>>(n);
  REP(i, n - 1) {
    ll a, b;
    cin >> a >> b;
    a--, b--;
    to[a].push_back(b);
    to[b].push_back(a);
  }
  dist = vector<ll>(n);
  dfs(0, -1, 0);
  sort(ALL(dist));
  if (n < k) {
    cout << -1 << endl;
    exit(0);
  }
  ll ans = 0;
  REP(i, k) { ans += dist[i]; }
  cout << ans << endl;
}
0