201903-2 二十四点数

29 篇文章 0 订阅
#include <iostream>
#include <cstring>
#include <cstdio>
#include <string>
#include <algorithm>
#include <stack>
#include <map>
// 嫌弃太长,直接使用
// #include <bits/stdc++.h>

using namespace std;

stack<int> num;
stack<char> ops;
map<char, int> prio; // priority

void compute() {
	int num1 = num.top();
	num.pop();
	int num2 = num.top();
	num.pop();
	char op = ops.top();
	ops.pop();
	switch (op) {
		case 'x':
			num.push(num2 * num1);
			break;
		case '/':
			num.push(num2 / num1);
			break;
		case '+':
			num.push(num2 + num1);
			break;
		case '-':
			num.push(num2 - num1);
			break;
	}
}

int main() {
//	freopen("in.txt", "r", stdin);
	prio['+'] = prio['-'] = 0;
	prio['x'] = prio['/'] = 1;

	int n;
	cin >> n;

	for (int i = 1; i <= n; i++) {
		string s;
		cin >> s;
		num.push(s[0] - '0');
		ops.push(s[1]);
		num.push(s[2] - '0');

		for (int j = 3; j < s.length(); j++) {
			// 如果是数字,直接入操作数栈
			if (s[j] >= '0' && s[j] <= '9') {
				num.push(s[j] - '0');
			} else {  // 如果是操作符
				// 当前操作符比栈顶操作符的优先级低或者等
				while (!ops.empty() && prio[s[j]] <= prio[ops.top()]) {
					compute();
				}
				
				// 当前操作符比栈顶操作符的优先级高,直接入栈。
				ops.push(s[j]);
			}
		}

		while (!ops.empty())
			compute();
		printf(num.top() == 24 ? "Yes\n" : "No\n");
		num.pop();
	}

	return 0;
}
/**

10
9+3+4x3
5+4x5x5
7-9-9+8
5x6/5x4
3+5+7+9
1x1+9-9
1x9-5/9
8/5+6x9
6x7-3x6
6x4+4/5

*/

参考1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值