cpp/geometry/two-points-distance.cpp
- View this file on GitHub
- Last update: 2024-06-26 21:19:48+09:00
Depends on
- cpp/data-structure/bbst/avl-tree.cpp
- cpp/data-structure/big-int.cpp
- cpp/data-structure/binary-indexed-tree.cpp
- cpp/data-structure/mod-int/arbitrary-mod-int.cpp
- cpp/data-structure/mod-int/mod-int.cpp
- cpp/data-structure/potentialized-union-find.cpp
- cpp/data-structure/segment-tree/2d-segment-tree.cpp
- cpp/data-structure/segment-tree/lazy-add-segment-tree.cpp
- cpp/data-structure/segment-tree/lazy-update-segment-tree.cpp
- cpp/data-structure/segment-tree/segment-tree.cpp
- cpp/data-structure/union-find.cpp
- cpp/data-structure/value-union-find.cpp
- cpp/geometry/line-segment.hpp
- cpp/geometry/line.hpp
- cpp/geometry/linevec.hpp
- cpp/geometry/point.hpp
- cpp/geometry/projection.cpp
- cpp/geometry/reflection.cpp
- cpp/geometry/vec.hpp
- cpp/graph/MST/kruskal.cpp
- cpp/graph/shortest-path/dijkstra.cpp
- cpp/graph/shortest-path/warshall-floyd.cpp
- cpp/graph/tree/lowest-common-ancestor.cpp
- cpp/graph/tree/tree-diameter.cpp
- cpp/math/binary-power-method.cpp
- cpp/math/combination.cpp
- cpp/math/convolution.cpp
- cpp/math/exactsqrt.cpp
- cpp/math/expansion-gcd.cpp
- cpp/math/factorize.cpp
- cpp/math/gcd-lcm.cpp
- cpp/math/is-prime.cpp
- cpp/math/matrix.cpp
- cpp/math/meissel-lehhmer.cpp
- cpp/math/miller-rabin.cpp
- cpp/math/quotients.cpp
- cpp/math/rho.cpp
- cpp/math/sieve-of-eratosthenes.cpp
- cpp/other/compare.cpp
- cpp/string/rolling-hash.cpp
- cpp/template/basic-query.cpp
- cpp/template/basic.cpp
- cpp/template/codeforces.cpp
- cpp/template/template-tc.cpp
- cpp/template/template.cpp
- cpp/z_test/aoj-ALDS1_14_B.test.cpp
- cpp/z_test/aoj-CGL_1_A.test.cpp
- cpp/z_test/aoj-DSL_1_B.test.cpp
- cpp/z_test/aoj-DSL_2_A.test.cpp
- cpp/z_test/aoj-GRL_1_C.test.cpp
- cpp/z_test/aoj-GRL_2_A.test.cpp
- cpp/z_test/aoj-NTL_1_E.test.cpp
- cpp/z_test/aoj-NTL_2_F.test.cpp
- cpp/z_test/yosupo-addition_of_big_integers.test.cpp
- cpp/z_test/yosupo-convolution_mod.cpp
- cpp/z_test/yosupo-counting_primes.cpp
- cpp/z_test/yosupo-enumerate_primes.cpp
- cpp/z_test/yosupo-enumerate_quotients.cpp
- cpp/z_test/yosupo-factorize.test.cpp
- cpp/z_test/yosupo-inverse_matrix.test.cpp
- cpp/z_test/yosupo-lca.test.cpp
- cpp/z_test/yosupo-matrix_product.test.cpp
- cpp/z_test/yosupo-point_add_range_sum.test.cpp
- cpp/z_test/yosupo-primality_test.test.cpp
- cpp/z_test/yosupo-shortest_path.test.cpp
- cpp/z_test/yosupo-tree_diameter.test.cpp
- cpp/z_test/yosupo-unionfind.test.cpp
- cpp/z_test/yukicoder-0117.test.cpp
- cpp/z_test/yukicoder-1344.test.cpp
- go/math/is_prime.go
- go/template.go
- haskell/template.hs
Code
#pragma once
#include "./geometry.hpp"
#include "./magnitude.hpp"
long double distance(Point a, Point b){
return magnitude(a-b);
}
Traceback (most recent call last):
File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj_resolve/resolver.py", line 181, in resolve
bundled_code = language.bundle(path, basedir=basedir)
File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj/verify/languages/cplusplus.py", line 252, in bundle
bundler.update(path)
File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj/verify/languages/cplusplus_bundle.py", line 483, in update
self._resolve(pathlib.Path(included), included_from=path)
File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj/verify/languages/cplusplus_bundle.py", line 291, in _resolve
raise BundleErrorAt(path, -1, "no such header")
competitive_verifier.oj.verify.languages.cplusplus_bundle.BundleErrorAt: geometry.hpp: line -1: no such header