제출 #1120210

#제출 시각아이디문제언어결과실행 시간메모리
1120210vjudge1Art Collections (BOI22_art)C++17
컴파일 에러
0 ms0 KiB
void solve (int n){ vector<int>v; for(int i=1;i<=n;i++){ v.push_back(i); } while(true){ int h=-1; h=publish(v); if(h<=0){ answer(v); break; } v.next_permutation(); } }

컴파일 시 표준 에러 (stderr) 메시지

art.cpp: In function 'void solve(int)':
art.cpp:10:5: error: 'vector' was not declared in this scope
   10 |     vector<int>v;
      |     ^~~~~~
art.cpp:10:12: error: expected primary-expression before 'int'
   10 |     vector<int>v;
      |            ^~~
art.cpp:12:9: error: 'v' was not declared in this scope
   12 |         v.push_back(i);
      |         ^
art.cpp:16:19: error: 'v' was not declared in this scope
   16 |         h=publish(v);
      |                   ^
art.cpp:16:11: error: 'publish' was not declared in this scope
   16 |         h=publish(v);
      |           ^~~~~~~
art.cpp:18:13: error: 'answer' was not declared in this scope
   18 |             answer(v);
      |             ^~~~~~
interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~