結果
問題 | No.1719 Tree and Permutation |
ユーザー | square1001 |
提出日時 | 2021-10-22 23:00:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 402 ms / 2,000 ms |
コード長 | 511 bytes |
コンパイル時間 | 757 ms |
コンパイル使用メモリ | 80,452 KB |
実行使用メモリ | 9,200 KB |
最終ジャッジ日時 | 2024-09-23 06:53:41 |
合計ジャッジ時間 | 3,625 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 279 ms
6,816 KB |
testcase_02 | AC | 247 ms
6,944 KB |
testcase_03 | AC | 402 ms
9,200 KB |
testcase_04 | AC | 374 ms
8,144 KB |
testcase_05 | AC | 395 ms
8,772 KB |
testcase_06 | AC | 375 ms
8,796 KB |
ソースコード
#include <queue> #include <vector> #include <iostream> #include <algorithm> #include <functional> using namespace std; int main() { int Q; cin >> Q; while (Q--) { int N; cin >> N; vector<vector<int> > G(N); 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); } int degree1 = 0; for (int i = 0; i < N; ++i) { if (G[i].size() == 1) { ++degree1; } } cout << (degree1 * 2 >= N ? "Yes" : "No") << endl; } return 0; }