結果

問題 No.994 ばらばらコイン
ユーザー ui_mtcui_mtc
提出日時 2020-03-30 17:31:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 1,818 ms
コンパイル使用メモリ 170,856 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-22 04:14:41
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 70 ms
8,704 KB
testcase_03 AC 79 ms
9,344 KB
testcase_04 AC 79 ms
9,344 KB
testcase_05 AC 38 ms
6,940 KB
testcase_06 AC 78 ms
9,472 KB
testcase_07 AC 77 ms
9,384 KB
testcase_08 AC 54 ms
7,552 KB
testcase_09 AC 74 ms
8,960 KB
testcase_10 AC 55 ms
7,552 KB
testcase_11 AC 62 ms
8,064 KB
testcase_12 AC 68 ms
8,320 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long 
using namespace std;
using Graph = vector<vector<int>>;

signed main(){
  int N, K;
  cin >> N >> K;
  Graph G(N);
  for( int i = 0; i < N-1; i++ ){
    int A, B;
    cin >> A >> B;
    A--;
    B--;
    G.at(A).push_back(B);
    G.at(B).push_back(A);
  }
  if( N < K ) cout << -1 << endl;
  else cout << K-1 << endl;
}
0