Skip to content

Commit

Permalink
fix: missing header
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiphereth-A committed Jan 11, 2024
1 parent 0e8bf59 commit 7df6d18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/test_cpverifier/aizu/grl_5_a.test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#define PROBLEM "https://onlinejudge.u-aizu.ac.jp/courses/library/5/GRL/all/GRL_5_A"

#include "../../code/tree/diam.hpp"
#include "../../code/tree/treew.hpp"

int main() {
std::ios::sync_with_stdio(false);
Expand Down
1 change: 1 addition & 0 deletions src/test_cpverifier/library-checker/tree_diameter.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "../../code/graph/path.hpp"
#include "../../code/tree/diam.hpp"
#include "../../code/tree/treew.hpp"
#include "../../code/util/ios_container.hpp"

int main() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "../../code/ds/fenwick.hpp"
#include "../../code/tree/dsu_on_tree.hpp"
#include "../../code/tree/tree.hpp"
#include "../../code/util/fastio.hpp"

constexpr i64 INF = std::numeric_limits<i64>::max() / 2;
Expand Down Expand Up @@ -30,7 +31,7 @@ int main() {
tifa_libs::ds::fenwick<i64> bit(q + 2);
vec<i64> ans(q + 1, INF);

tifa_libs::graph::tree_dfs_info info;
tifa_libs::graph::tree_dfs_info<tifa_libs::graph::tree> info;
tifa_libs::graph::dsu_on_tree(
tr, info,
[&](u32 i) {
Expand Down

0 comments on commit 7df6d18

Please sign in to comment.