Skip to content

Commit 30f9777

Browse files
committed
fixes
1 parent d942d63 commit 30f9777

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tests/library_checker_aizu_tests/graphs/offline_incremental_scc.test.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#define PROBLEM "https://judge.yosupo.jp/problem/incremental_scc"
2-
#include "../../../library/graphs/strongly_connected_components/offline_incremental_scc.hpp"
2+
#include "../template.hpp"
33

4+
#include "../../../library/graphs/strongly_connected_components/offline_incremental_scc.hpp"
45
#include "../../../kactl/content/data-structures/UnionFind.h"
56
#include "../../../library/math/mod_int.hpp"
6-
#include "../template.hpp"
7+
78
int main() {
89
cin.tie(0)->sync_with_stdio(0);
910
int n, m;

tests/library_checker_aizu_tests/graphs/strongly_connected_components_aizu.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#define PROBLEM \
22
"https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_3_C"
3-
#include "../template.hpp"
3+
#include "../../../library/graphs/strongly_connected_components/add_edges_strongly_connected.hpp"
44
#include "../scc_asserts.hpp"
5-
#include "../../../library/graphs/scc/add_edges_strongly_connected.hpp"
5+
#include "../template.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n, m;

0 commit comments

Comments
 (0)