문제는 다음과 같습니다. https://www.acmicpc.net/problem/1935 1935번: 후위 표기식2 첫째 줄에 피연산자의 개수(1 ≤ N ≤ 26) 가 주어진다. 그리고 둘째 줄에는 후위 표기식이 주어진다. (여기서 피연산자는 A~Z의 영대문자이며, A부터 순서대로 N개의 영대문자만이 사용되며, 길이 www.acmicpc.net 풀이 코드는 다음과 같습니다. #include #include #include using namespace std; int main() { cin.tie(0); ios_base::sync_with_stdio(0); int n; cin>>n; string s; cin>>s; stackst; vectorv(n); for(int i{0};i>v[i]; } int id..