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 | 31 |
Tags
- 티스토리챌린지
- algorithm
- UE5
- RootMotion
- C++
- Frustum
- Unreal Engine5
- 팰린드롬 만들기
- winapi
- UnrealEngine5
- RVO
- 줄 세우기
- softeer
- IFileDialog
- C
- DeferredRendering
- 2294
- 1563
- 백준
- Programmers
- UnrealEngine4
- DirectX11
- GeeksForGeeks
- 언리얼엔진5
- baekjoon
- NRVO
- const
- 오블완
- directx
- 프로그래머스
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1935번 : 후위 표기식2 본문
https://www.acmicpc.net/problem/1935
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
int n;
string s;
double nums[101] = { 0 }; // 인덱스는 아스키코드
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> s;
for (int i = 0; i < n; ++i)
{
cin >> nums[i + 65];
}
vector<double> numsStack;
for (int i = 0; i < s.size(); ++i)
{
if (s[i] >= 'A' && s[i] <= 'Z')
{
numsStack.push_back(nums[s[i]]);
}
else
{
double num1 = numsStack.back();
numsStack.pop_back();
double num2 = numsStack.back();
numsStack.pop_back();
if (s[i] == '+')
{
numsStack.push_back(num1 + num2);
}
else if (s[i] == '-')
{
numsStack.push_back(num2 - num1);
}
else if (s[i] == '*')
{
numsStack.push_back(num1 * num2);
}
else if (s[i] == '/')
{
numsStack.push_back(num2 / num1);
}
}
}
printf("%.2f", numsStack.back());
return 0;
}
|
cs |
기본적인 후위표기식 문제이고, 데이터타입을 double형으로 해야한다는것만 알면 어려울건 없다.
만약 백준자체에서 실수계산 범위를 float인 4바이트정도로만 했다면 float도 통과 했겠지만, double정도의 정밀도계산을 해야 통과하게 되어있는 것 같다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2585번 : 경비행기 (1) | 2023.05.19 |
---|---|
[Algorithm] Baekjoon 9082번 : 지뢰찾기 (1) | 2023.05.16 |
[Algorithm]Baekjoon 2632번 :: 피자판매 (2) | 2023.05.10 |
[Algorithm]Baekjoon 18428번 :: 감시 피하기 (1) | 2023.05.10 |
[Algorithm]Baekjoon 16967번 :: 배열 복원하기 (0) | 2023.05.10 |