mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-27 13:56:26 +00:00
B - Diameter of Graph
https://codeforces.com/contest/1581/submission/130353768
This commit is contained in:
parent
d1e3ca9f09
commit
810d9e19a3
19
CodeForces/1581/B/B.cpp
Normal file
19
CodeForces/1581/B/B.cpp
Normal file
@ -0,0 +1,19 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
long long t, n, m, k;
|
||||
|
||||
int main() {
|
||||
cin >> t;
|
||||
while (t--) {
|
||||
cin >> n >> m >> k;
|
||||
k -= 2;
|
||||
if (n == 1) {
|
||||
cout << (m == 0 && k >= 0 ? "YES" : "NO") << endl;
|
||||
} else {
|
||||
cout << ((m < n - 1 || n * (n - 1) < m * 2 || (n * (n - 1) == m * 2 && k < 1) || (n * (n - 1) > m * 2 && k < 2)) ? "NO" : "YES") << endl;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user