QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#835759 | #9926. Flipping Paths | ucup-team359# | Compile Error | / | / | C++14 | 3.8kb | 2024-12-28 14:32:45 | 2024-12-28 14:32:46 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code: In function ‘void solve()’: answer.code:13:12: error: missing template arguments before ‘a’ 13 | vector a(n, vector <int>(m)); | ^ answer.code:18:13: error: ‘a’ was not declared in this scope 18 | a[i][j] = c == 'W'; | ^ answer.code:25:16: error: missing template arguments before ‘b’ 25 | vector b(n, vector <int>(m)); | ^ answer.code:27:13: error: ‘b’ was not declared in this scope 27 | b[i][j] = a[j][i]; | ^ answer.code:27:23: error: ‘a’ was not declared in this scope 27 | b[i][j] = a[j][i]; | ^ answer.code:29:9: error: ‘a’ was not declared in this scope 29 | a = b; | ^ answer.code:29:13: error: ‘b’ was not declared in this scope 29 | a = b; | ^ answer.code:126:15: error: ‘a’ was not declared in this scope 126 | if (solve(a)) { | ^ answer.code:131:13: error: ‘a’ was not declared in this scope 131 | a[i][j] ^= 1; | ^ answer.code:134:15: error: ‘a’ was not declared in this scope 134 | if (solve(a)) { | ^