제출 #1033245

#제출 시각아이디문제언어결과실행 시간메모리
1033245Hectorungo_18Island Hopping (JOI24_island)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include"island.h"
using namespace std;
 
string abc = "abcdefghijklmnopqrstuvwxyz";
 
void solve(int n, int l){
    vector<int> b(n+1, 0);
    b[1]=1;
 
 
    for(int i = 1; i < n; i++){
        int a = query(1, i);
        if(bo[a]) continue;
        bo[a]=1;
        for(int j = 1; j < n; j++){
            int b = query(a, j);
            answer(a, b);
            if(bo[b]) break;
            bo[b]=1;
        }
    }
 
}

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

island.cpp: In function 'void solve(int, int)':
island.cpp:14:12: error: 'bo' was not declared in this scope; did you mean 'b'?
   14 |         if(bo[a]) continue;
      |            ^~
      |            b
island.cpp:15:9: error: 'bo' was not declared in this scope; did you mean 'b'?
   15 |         bo[a]=1;
      |         ^~
      |         b