QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#135404 | #5745. Graph Isomorphism | tselmegkh# | WA | 9ms | 3588kb | C++20 | 1.7kb | 2023-08-05 14:52:39 | 2023-08-05 14:52:41 |
Judging History
answer
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <iomanip>
using namespace std;
const int N = 2e5 + 5, inf = 1e9;
#define pb push_back
#define mp make_pair
#define ll long long
#define ff first
#define ss second
#define all(a) a.begin(),a.end()
#define sz(x) (int)x.size()
typedef vector<int> vi;
typedef pair<int,int> ii;
typedef vector<ii> vii;
void solve(){
ll n, m;
cin >> n >> m;
ll mx = 0, mn = 1e9;
ll a[n + 5];
for(ll i = 0; i <= n + 2; i++) a[i] = 0;
for(ll i = 0; i < m; i++){
ll p, q;
cin >> p >> q;
a[p]++; a[q]++;
}
for(ll i = 1; i <= n; i++){
if(a[i] > mx) mx = a[i];
if(a[i] < mn) mn = a[i];
}
if(m == 0){
cout << "YES\n";
return;
}
if(1LL * m == 1LL * n * (n - 1) / 2){
cout << "YES\n";
return;
}
if(mx == m && n == m + 1){
cout << "YES\n";
return;
}
if(mn == 0 && 1LL * m == 1LL * (n - 1) * (n - 2) / 2){
cout << "YES\n";
return;
}
if(n == 1){
cout << "YES\n";
return;
}
if(n == 2){
cout << "YES\n";
return;
}
if(n == 3){
cout << "YES\n";
return;
}
if(n == 4){
if(a[1] == a[2] == a[3] == a[4]){
cout << "YES\n";
return;
}
}
cout << "NO\n";
return;
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int t = 1;
cin >> t;
while(t--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3532kb
input:
3 3 3 1 2 2 3 3 1 3 2 1 2 2 3 5 5 1 2 2 3 3 4 4 5 5 1
output:
YES YES NO
result:
ok 3 token(s): yes count is 2, no count is 1
Test #2:
score: 0
Accepted
time: 8ms
memory: 3588kb
input:
39982 3 2 2 1 3 2 2 1 1 2 2 1 2 1 3 3 3 1 2 3 1 2 2 1 1 2 3 3 3 1 3 2 2 1 2 1 1 2 3 2 1 2 3 1 3 3 2 1 3 1 2 3 2 1 1 2 3 2 2 1 3 2 3 3 2 3 3 1 2 1 3 3 2 1 1 3 2 3 3 3 3 1 3 2 1 2 2 1 2 1 2 1 2 1 3 1 3 1 2 1 2 1 2 1 1 2 3 2 1 3 3 2 3 2 1 2 1 3 3 2 3 2 1 3 2 1 1 2 3 2 3 2 3 1 3 3 2 3 3 1 1 2 2 1 1 2 3 ...
output:
YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES YES ...
result:
ok 39982 token(s): yes count is 39982, no count is 0
Test #3:
score: -100
Wrong Answer
time: 9ms
memory: 3584kb
input:
33365 3 3 3 1 2 3 2 1 2 1 2 1 4 6 1 2 3 4 4 2 2 3 3 1 4 1 2 1 1 2 2 1 1 2 4 5 1 4 1 2 4 2 3 4 1 3 4 3 4 2 2 1 1 3 3 1 3 2 4 3 1 3 1 2 3 4 3 3 3 2 3 1 2 1 3 1 2 3 3 1 1 3 3 1 2 1 3 2 1 3 3 2 4 5 3 1 4 2 3 4 2 3 2 1 4 2 1 2 3 2 2 1 2 1 3 2 1 2 2 3 3 1 3 2 4 1 3 4 3 1 2 1 4 3 1 2 4 2 3 2 2 1 2 1 4 5 3 ...
output:
YES YES YES YES YES NO YES YES NO YES YES YES YES YES NO YES YES YES YES YES YES YES YES NO YES YES YES YES YES YES YES YES YES NO YES YES YES YES NO NO NO YES YES YES YES YES YES YES YES NO YES YES YES YES YES YES NO YES YES YES YES YES NO YES YES YES YES NO YES NO YES YES YES YES NO YES YES YES YE...
result:
wrong answer expected NO, found YES [7th token]