제출 #201877

#제출 시각아이디문제언어결과실행 시간메모리
201877Leonardo_PaesMemory (IOI10_memory)C++17
컴파일 에러
0 ms0 KiB
#include "grader.h"
#include "memory.h"

std::vector<int> p[26];

void play() {
    int i=1, j=50, a;
    while(i<j){
        a = faceup(i);
        p[a].push_back(i);
        a = faceup(j);
        p[a].push_back(j);
        i++, j--;
    }
    for(int i=1; i<=26; i++){
        faceup(p[i][0]); faceup(p[i][1]);
    }
}

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

memory.cpp:4:6: error: 'vector' in namespace 'std' does not name a template type
 std::vector<int> p[26];
      ^~~~~~
memory.cpp: In function 'void play()':
memory.cpp:10:9: error: 'p' was not declared in this scope
         p[a].push_back(i);
         ^
memory.cpp:16:16: error: 'p' was not declared in this scope
         faceup(p[i][0]); faceup(p[i][1]);
                ^