QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#594236 | #7309. Compressed LCS | Urd | Compile Error | / | / | C++17 | 3.8kb | 2024-09-27 20:31:25 | 2024-09-27 20:31:27 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void Proc(int, int)’: answer.code:58:43: error: too few arguments to function ‘auto SufQ(int)’ 58 | dp[l][j] = std::max(dp[l][j], SufQ() + p[ch][l]); | ~~~~^~ answer.code:35:6: note: declared here 35 | auto SufQ(int x) { | ^~~~