test/cpv/library-checker-string/lyndon_factorization.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/lyndon_factorization | ||
| 2 | #include "../../../src/io/container/lib.hpp" | ||
| 3 | #include "../../../src/str/lyndon/lib.hpp" | ||
| 4 | |||
| 5 | using namespace tifa_libs; | ||
| 6 | 23 | int main() { | |
| 7 |
1/2✓ Branch 2 taken 23 times.
✗ Branch 3 not taken.
|
23 | std::cin.tie(nullptr)->std::ios::sync_with_stdio(false); |
| 8 | 23 | strn s; | |
| 9 |
1/2✓ Branch 1 taken 23 times.
✗ Branch 2 not taken.
|
23 | std::cin >> s; |
| 10 |
1/2✓ Branch 4 taken 23 times.
✗ Branch 5 not taken.
|
23 | std::cout << duval(s) << '\n'; |
| 11 | 23 | return 0; | |
| 12 | 23 | } | |
| 13 |