From bb53dc5213cc5a318236481e204efbb12a060526 Mon Sep 17 00:00:00 2001 From: ei1333 Date: Tue, 14 Apr 2026 13:58:05 +0000 Subject: [PATCH] Add dependency to PersistentUnionFind --- structure/union-find/persistent-union-find.hpp | 2 ++ test/verify/yosupo-persistent-unionfind.test.cpp | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/structure/union-find/persistent-union-find.hpp b/structure/union-find/persistent-union-find.hpp index 68697e43c..ebf104921 100644 --- a/structure/union-find/persistent-union-find.hpp +++ b/structure/union-find/persistent-union-find.hpp @@ -1,3 +1,5 @@ +#include "../others/persistent-array.hpp" + /* * @brief Persistent-Union-Find(永続Union-Find) */ diff --git a/test/verify/yosupo-persistent-unionfind.test.cpp b/test/verify/yosupo-persistent-unionfind.test.cpp index 32ff585c8..aaf59297d 100644 --- a/test/verify/yosupo-persistent-unionfind.test.cpp +++ b/test/verify/yosupo-persistent-unionfind.test.cpp @@ -2,7 +2,6 @@ #include "../../template/template.hpp" -#include "../../structure/others/persistent-array.hpp" #include "../../structure/union-find/persistent-union-find.hpp" int main() {