GCC Code Coverage Report


Directory: ./
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 100.0% 8 / 0 / 8
Functions: 100.0% 1 / 0 / 1
Branches: 50.0% 6 / 0 / 12

test/cpv/library-checker-convolution/min_plus_convolution_convex_convex.cpp
Line Branch Exec Source
1 // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/min_plus_convolution_convex_convex
2 #include "../../../src/conv/min_plus/cv_cv/lib.hpp"
3 #include "../../../src/io/container/lib.hpp"
4
5 using namespace tifa_libs;
6 34 int main() {
7
1/2
✓ Branch 2 taken 34 times.
✗ Branch 3 not taken.
34 std::cin.tie(nullptr)->std::ios::sync_with_stdio(false);
8 u32 n, m;
9
2/4
✓ Branch 1 taken 34 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 34 times.
✗ Branch 5 not taken.
34 std::cin >> n >> m;
10
2/4
✓ Branch 1 taken 34 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 34 times.
✗ Branch 5 not taken.
102 vecu a(n), b(m);
11 34 std::cin >> a >> b;
12
1/2
✓ Branch 3 taken 34 times.
✗ Branch 4 not taken.
34 std::cout << conv_minplus_cv_cv(a, b) << '\n';
13 34 return 0;
14 34 }
15