Free Contest 85 - CHILD

View as PDF

Submit solution

Points: 0.04 (partial)
Time limit: 1.0s
Memory limit: 256M

Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

In case the statement didn't load correctly, you can download the statement here: Statement

Lưu ý: các bạn không nhập, xuất dữ liệu bằng file kể cả khi đề bài có yêu cầu. Đọc, ghi dữ liệu được thực hiện ở stdin và stdout.


Comments

Please read the guidelines before commenting.



  • -4
    gv_thcsttme_dangngoclanchi  commented on Dec. 25, 2023, 3:20 p.m.

    Đây là bài toán dãy con chung dài nhất, sử dụng quy hoạch động đơn giản:

    Gọi F[i][j] là chiều dài dãy con chung dài nhất của xâu a[1-i] với xâu b[1-j]. Nếu a[i] = b[j] thì F[i][j] = F[i-1][j-1]+1, else F[i][j] = max(F[i-1][j], F[i][j-1]).