-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy patheuler_circs.test.cpp
59 lines (55 loc) · 1.3 KB
/
euler_circs.test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// @brief Counting Eulerian Circuits
#define PROBLEM "https://judge.yosupo.jp/problem/counting_eulerian_circuits"
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("tune=native")
#include "cp-algo/math/combinatorics.hpp"
#include "cp-algo/linalg/matrix.hpp"
#include <bits/stdc++.h>
using namespace std;
using namespace cp_algo::math;
using namespace cp_algo::linalg;
const int64_t mod = 998244353;
using base = modint<mod>;
void solve() {
int n, m;
cin >> n >> m;
matrix<base> a(n);
int r = 0;
vector<int> indeg(n), outdeg(n);
for(int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
a[u][v] -= 1;
a[v][v] += 1;
outdeg[u]++;
indeg[v]++;
r = v;
}
a[r][r] = fact<base>(indeg[r] - 1);
for(int i = 0; i < n; i++) {
if(i == r) {
continue;
}
if(indeg[i] != outdeg[i]) {
cout << 0 << "\n";
return;
}
if(indeg[i] != 0) {
a[i] *= fact<base>(indeg[i] - 1);
} else {
a[i][i] = 1;
}
a[r][i] = a[i][r] = 0;
}
cout << a.det() << "\n";
}
signed main() {
//freopen("input.txt", "r", stdin);
ios::sync_with_stdio(0);
cin.tie(0);
int t = 1;
// cin >> t;
while(t--) {
solve();
}
}