Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자료구조
- XR Interaction Toolkit
- 유니온 파인드
- 투 포인터
- 수학
- 브루트포스
- 그래프
- Team Fortress 2
- 유니티
- c++
- 스택
- 시뮬레이션
- VR
- 누적 합
- 그리디 알고리즘
- 정렬
- 트리
- 구현
- 다익스트라
- BFS
- DFS
- 다이나믹 프로그래밍
- Unreal Engine 5
- 백트래킹
- ue5
- 재귀
- 문자열
- 백준
- 우선순위 큐
- 알고리즘
Archives
- Today
- Total
1일1알
백준 14395번 4연산 C++ 본문
https://www.acmicpc.net/problem/14395
bfs
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int64 s, t;
struct Info {
int64 val;
string ops;
};
set<int64> st;
char op[4] = { '*','+','-','/' };
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> s >> t;
queue<Info> q;
string ans = "?";
q.push({ s,"" });
st.insert(s);
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.val == t) {
ans = curr.ops;
break;
}
for (int i = 0; i < 4; i++) {
char nextOp = op[i];
int64 nextVal = curr.val;
switch (nextOp) {
case '*':
nextVal *= curr.val;
break;
case '+':
nextVal += curr.val;
break;
case '-':
nextVal -= curr.val;
break;
case '/':
if (curr.val != 0) {
nextVal /= curr.val;
}
break;
}
if (st.find(nextVal) != st.end()) continue;
q.push({ nextVal,curr.ops + nextOp });
st.insert(nextVal);
}
}
if (ans == "") cout << 0;
else if (ans == "?") cout << -1;
else cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 3495번 아스키 도형 C++ (0) | 2022.11.23 |
---|---|
백준 15922번 아우으 우아으이야!! C++ (0) | 2022.11.22 |
백준 9011번 순서 C++ (0) | 2022.11.20 |
백준 15990번 1, 2, 3 더하기 5 C++ (0) | 2022.11.19 |
백준 25516번 거리가 k이하인 트리 노드에서 사과 수확하기 C++ (0) | 2022.11.18 |