QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#774561 | #7860. Graph of Maximum Degree 3 | guodong# | WA | 86ms | 23468kb | C++17 | 2.6kb | 2024-11-23 13:26:40 | 2024-11-23 13:26:41 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define For(i,a,b) for(int i = a; i <= b; ++i)
#define int long long
const int mod = 998244353;
const int N = 1e5 + 100;
int inter(vector<int> &a, vector<int> &b){
int cnt = 0;
for(auto &x : a)
for(auto &y : b)
if(x == y){
++cnt;
break;
}
return cnt;
}
vector<int> Red[N],Blue[N];
int check(vector<int> &candi){
// assert(0);
vector<int> r,b;
for(auto &node : candi){
for(auto &arr : Red[node])
r.emplace_back(arr);
for(auto &arr : Blue[node])
b.emplace_back(arr);
}
sort(candi.begin(),candi.end());
sort(r.begin(),r.end()); r.resize(unique(r.begin(),r.end()) - r.begin());
sort(b.begin(),b.end()); b.resize(unique(b.begin(),b.end()) - b.begin());
if(min(r.size(),min(b.size(),candi.size())) < 4)
return 0;
for(int i = 0;i < 4; ++i){
if(b[i] != r[i] || candi[i] != r[i] || b[i] != candi[i])
return 0;
}
// assert(0);
return 1;
}
map<pair<int,int>,int> M[2];
signed main(){
#ifdef NICEGUODONG
freopen("data.in","r",stdin);
#endif
ios::sync_with_stdio(false);
int n,m;
cin >> n >> m;
For(i,1,m){
int u,v,w;
cin >> u >> v >> w;
if(u > v) swap(u,v);
if(w == 0)
Red[u].emplace_back(v),Red[v].emplace_back(u);
else
Blue[u].emplace_back(v),Blue[v].emplace_back(u);
M[w][make_pair(u,v)] = 1;
}
int ans = n;
for(auto [uv,_] : M[0]){
if(M[1].find(uv) != M[1].end()){
++ans;
auto [u,v] = uv;
ans += inter(Red[u],Blue[v]);
ans += inter(Blue[u],Red[v]);
ans %= mod;
}
}
vector<int> Vis(n + 1);
for(int i = 1; i <= n; ++i){
if(Vis[i])
continue;
queue<int> Q;
vector<int> candi;
Q.push(i);
while(!Q.empty()){
int f = Q.front();
Q.pop();
Vis[f] = 1;
candi.emplace_back(f);
// if(candi.size() > 4) break;
for(auto &x : Red[f])
if(!Vis[x]){
Q.push(x);
Vis[x] = 1;
}
for(auto &x : Blue[f])
if(!Vis[x]){
Q.push(x);
Vis[x] = 1;
}
}
if(candi.size() == 4){
ans += check(candi);
}
}
cout << ans % mod << '\n';
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 8252kb
input:
3 4 1 2 0 1 3 1 2 3 0 2 3 1
output:
5
result:
ok 1 number(s): "5"
Test #2:
score: 0
Accepted
time: 0ms
memory: 8504kb
input:
4 6 1 2 0 2 3 0 3 4 0 1 4 1 2 4 1 1 3 1
output:
5
result:
ok 1 number(s): "5"
Test #3:
score: 0
Accepted
time: 2ms
memory: 8556kb
input:
20 28 9 6 1 9 6 0 3 8 0 8 4 0 3 8 1 3 4 1 2 13 0 13 1 0 19 1 0 2 1 1 2 19 1 13 19 1 14 15 1 14 15 0 7 12 0 12 17 0 20 17 0 7 17 1 7 20 1 12 20 1 16 18 0 18 10 0 5 10 0 16 10 1 16 5 1 18 5 1 4 6 0 9 11 0
output:
27
result:
ok 1 number(s): "27"
Test #4:
score: 0
Accepted
time: 0ms
memory: 8264kb
input:
100 150 93 23 0 23 81 0 76 81 0 93 81 1 93 76 1 23 76 1 100 65 0 65 56 0 19 56 0 100 56 1 100 19 1 65 19 1 2 98 0 2 98 1 26 63 0 63 90 0 26 63 1 26 90 1 6 11 0 11 67 0 6 11 1 6 67 1 37 89 0 89 64 0 25 64 0 37 64 1 37 25 1 89 25 1 84 10 0 10 29 0 75 29 0 84 29 1 84 75 1 10 75 1 7 70 1 7 70 0 28 92 0 ...
output:
141
result:
ok 1 number(s): "141"
Test #5:
score: -100
Wrong Answer
time: 86ms
memory: 23468kb
input:
100000 133680 36843 86625 0 86625 63051 0 35524 63051 0 36843 63051 1 36843 35524 1 86625 35524 1 55797 82715 0 55797 82715 1 70147 35104 0 35104 91732 0 70147 35104 1 70147 91732 1 94917 70395 0 70395 68250 0 24100 68250 0 94917 68250 1 94917 24100 1 70395 24100 1 83033 18450 1 83033 18450 0 34462 ...
output:
144802
result:
wrong answer 1st numbers differ - expected: '144604', found: '144802'