#include "maze.h" void map_maze(int N) { // TODO: implement this std::vector A = { 1, 3 }; std::vector B = { 2, 4 }; int answer = query(A, B); // I found a passageway from room 1 to room 3! report_passageway(1, 3); }