Submission #64908
ソースコード
ステータス
コンパイルメッセージ
./Main.cpp: In function ‘int main()’:
./Main.cpp:11:5: error: ‘vector’ was not declared in this scope
vector<vector<int> > v(5000, vector<int>(5000, 0));
^~~~~~
./Main.cpp:11:5: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
./Main.cpp:4:1:
+#include <vector>
./Main.cpp:11:5:
vector<vector<int> > v(5000, vector<int>(5000, 0));
^~~~~~
./Main.cpp:11:19: error: expected primary-expression before ‘int’
vector<vector<int> > v(5000, vector<int>(5000, 0));
^~~
./Main.cpp:12:10: error: ‘v’ was not declared in this scope
sort(v.begin(), v.end());
^
セット
テストケース