test/cpv/aizu-dpl/dpl_1_e.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/library/7/DPL/all/DPL_1_E | ||
| 2 | #include "../../../src/opt/lev_dis/lib.hpp" | ||
| 3 | |||
| 4 | using namespace tifa_libs; | ||
| 5 | 50 | int main() { | |
| 6 |
1/2✓ Branch 2 taken 50 times.
✗ Branch 3 not taken.
|
50 | std::cin.tie(nullptr)->std::ios::sync_with_stdio(false); |
| 7 | 50 | strn a, b; | |
| 8 |
2/4✓ Branch 1 taken 50 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 50 times.
✗ Branch 5 not taken.
|
50 | std::cin >> a >> b; |
| 9 |
2/4✓ Branch 4 taken 50 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 50 times.
✗ Branch 8 not taken.
|
50 | std::cout << lev_dis(a, b).back().back() << '\n'; |
| 10 | 50 | return 0; | |
| 11 | 50 | } | |
| 12 |