리뷰 https://www.acmicpc.net/problem/143954가지 연산을 통해 초기 숫자 s를 t로 만들 수 있는 방법을 찾는 문제 전역 변수s, t : 초기 정수와 목표 정수를 저장할 변수v : 방문 여부를 체크할 해시 셋 함수1. bfsstring bfs() { queue q; q.push({ s * s, "*" }); v.insert(s * s); q.push({ s * 2, "+" }); v.insert(s * 2); q.push({ 0, "-" }); v.insert(0); q.push({ 1, "/" }); v.insert(1); while (!q.empty()) { P p = q.front(); q.pop(); ll c = p.v; string s = p.s; if (c..