結果
問題 | No.994 ばらばらコイン |
ユーザー | madoka |
提出日時 | 2020-02-21 22:21:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 1,293 ms |
コンパイル使用メモリ | 104,444 KB |
実行使用メモリ | 20,992 KB |
最終ジャッジ日時 | 2024-10-08 21:54:16 |
合計ジャッジ時間 | 2,853 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,296 KB |
testcase_01 | AC | 3 ms
8,288 KB |
testcase_02 | AC | 80 ms
20,608 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 85 ms
20,992 KB |
testcase_07 | WA | - |
testcase_08 | AC | 61 ms
16,884 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 4 ms
8,320 KB |
testcase_14 | AC | 4 ms
8,128 KB |
testcase_15 | AC | 4 ms
8,224 KB |
testcase_16 | AC | 4 ms
8,152 KB |
testcase_17 | AC | 3 ms
8,328 KB |
testcase_18 | AC | 3 ms
8,192 KB |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
8,320 KB |
testcase_21 | WA | - |
testcase_22 | AC | 4 ms
8,320 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int n; vector<int> g[200020]; int s[200020]; bool used[200020]; int cnt; int k; queue<int> que; void dfs(int x){ used[x]=1; for(auto y:g[x]){ if(used[y]) continue; k--; cnt++; if(k<2){ return; } que.push(y); } while(!que.empty()){ int p = que.front(); que.pop(); dfs(p); } } int main() { cnt=0; cin>>n>>k; for(int i=0; i<n-1; i++){ int a, b; cin>>a>>b; a--; b--; g[a].push_back(b); g[b].push_back(a); } dfs(0); if(k>=2){ printf("-1"); } else{ printf("%d",cnt); } return 0; }