Submission #1033245

# Submission time Handle Problem Language Result Execution time Memory
1033245 2024-07-24T14:55:58 Z Hectorungo_18 Island Hopping (JOI24_island) C++17
Compilation error
0 ms 0 KB
#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;
        }
    }
 
}

Compilation message

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