https://www.acmicpc.net/problem/14395코드#include #include #include using namespace std;#define MAX 1000000001#define FASTIO ios::sync_with_stdio(false); cin.tie(NULL);typedef long long ll;typedef pair p;set visit;int s, t;void bfs() { queue q; q.push({ s, "" }); visit.insert(s); if (s == t) { cout > s >> t; bfs(); return 0;} 설명*, +, - , / 순으로 bfs를 돌리면서 now가 t가 되는지 확인하면 된다. 느낀 점아이디어 자체는 바로 생각했는데,..