运行 ID 作者 题号 测评结果 分数 时间 内存 语言 代码长度 提交时间
645433 Y1614824396_fdsf 1079 - 秧歌 Star 不要上补习班 编译错误 0 0 MS 0 KB C++ 1390 8天前
暂时无法获取本题测试点详情。

Main.cc: In function 'int main()':
Main.cc:8:10: error: 'vector' is not a member of 'std'
8 | std::vector<std::vector<int>> graph(n, std::vector<int>(m, 0));
| ^~~~~~
Main.cc:2:1: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
1 | #include <iostream>
+++ |+#include <vector>
2 | // Removed 'using namespace std;' to avoid naming conflicts.
Main.cc:8:22: error: 'vector' is not a member of 'std'
8 | std::vector<std::vector<int>> graph(n, std::vector<int>(m, 0));
| ^~~~~~
Main.cc:8:22: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
Main.cc:8:29: error: expected primary-expression before 'int'
8 | std::vector<std::vector<int>> graph(n, std::vector<int>(m, 0));
| ^~~
Main.cc:12:13: error: 'graph' was not declared in this scope; did you mean 'isgraph'?
12 | graph[x-1][y-1] = v;
| ^~~~~
| isgraph
Main.cc:13:11: error: 'else' without a previous 'if'
13 | } else {
| ^~~~
Main.cc:27:23: error: 'prefixSum' was not declared in this scope
27 | int ans = prefixSum[x2][y2] - prefixSum[x1-1][y2] - prefixSum[x2][y1-1] + prefixSum[x1-1][y1-1];
| ^~~~~~~~~
Main.cc:32:22: error: 'ans' was not declared in this scope; did you mean 'abs'?
32 | std::cout << ans << std::endl;
| ^~~
| abs