답안 #956435

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
956435 2024-04-01T21:32:31 Z nigus Minerals (JOI19_minerals) C++14
컴파일 오류
0 ms 0 KB
#include "minerals.h"

using namespace std;

void Solve(int N)
{   
    int n = N;
    vector<int> done(2*n, 0);
    for(int c1 = 0; c1 < 2*n; c1++){
        if(done[c1] == 0){
            Query(c1+1);
            for(int c2 = c1+1; c2 < 2*n; c2++){
                if(done[c2] == 0){
                    int temp = Query(c2+1);
                    if(temp == 1){
                        Answer(c1+1,c2+1);
                        done[c1] = 1;
                        done[c2] = 1;
                    }
                    Query(c2+1);
                    if(done[c1] == 1)break;
                }
            }
            Query(c1+1);
        }
    }
}

Compilation message

minerals.cpp: In function 'void Solve(int)':
minerals.cpp:9:5: error: 'vector' was not declared in this scope
    9 |     vector<int> done(2*n, 0);
      |     ^~~~~~
minerals.cpp:3:1: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
    2 | #include "minerals.h"
  +++ |+#include <vector>
    3 | 
minerals.cpp:9:12: error: expected primary-expression before 'int'
    9 |     vector<int> done(2*n, 0);
      |            ^~~
minerals.cpp:11:12: error: 'done' was not declared in this scope
   11 |         if(done[c1] == 0){
      |            ^~~~