QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#594236#7309. Compressed LCSUrdCompile Error//C++173.8kb2024-09-27 20:31:252024-09-27 20:31:27

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) {
      |      ^~~~