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