結果
問題 | No.994 ばらばらコイン |
ユーザー | outline |
提出日時 | 2020-03-04 20:17:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 1,206 bytes |
コンパイル時間 | 1,150 ms |
コンパイル使用メモリ | 110,208 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-10-14 00:24:37 |
合計ジャッジ時間 | 2,483 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,888 KB |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | AC | 32 ms
8,960 KB |
testcase_03 | AC | 40 ms
9,088 KB |
testcase_04 | AC | 40 ms
8,960 KB |
testcase_05 | AC | 19 ms
7,296 KB |
testcase_06 | AC | 38 ms
9,000 KB |
testcase_07 | AC | 39 ms
8,960 KB |
testcase_08 | AC | 27 ms
7,936 KB |
testcase_09 | AC | 36 ms
8,704 KB |
testcase_10 | AC | 26 ms
7,936 KB |
testcase_11 | AC | 29 ms
8,320 KB |
testcase_12 | AC | 33 ms
8,448 KB |
testcase_13 | AC | 3 ms
5,760 KB |
testcase_14 | AC | 4 ms
5,888 KB |
testcase_15 | AC | 4 ms
5,888 KB |
testcase_16 | AC | 4 ms
5,888 KB |
testcase_17 | AC | 4 ms
5,888 KB |
testcase_18 | AC | 4 ms
5,760 KB |
testcase_19 | AC | 3 ms
5,888 KB |
testcase_20 | AC | 3 ms
5,760 KB |
testcase_21 | AC | 4 ms
5,760 KB |
testcase_22 | AC | 4 ms
5,760 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <tuple> #include <deque> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <complex> using namespace std; typedef long long ll; typedef pair<int, int> P; typedef pair<int, double> Pid; typedef pair<double, int> Pdi; typedef pair<ll, int> Pl; typedef pair<int, pair<int, int>> PP; constexpr double PI = 3.1415926535897932; // acos(-1) constexpr double EPS = 1e-15; constexpr int INF = 1001001001; constexpr int mod = 1e+9 + 7; #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define chadd(x, y) x = (x + y) % mod vector<int> graph[100005]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, k; cin >> n >> k; for(int i = 0; i < n - 1; ++i){ int a, b; cin >> a >> b; --a, --b; graph[a].emplace_back(b); graph[b].emplace_back(a); } if(n < k) cout << -1 << endl; else cout << k - 1 << endl; }