noi.openjudge 3340:RPN Calculator

2024-01-12 00:48

本文主要是介绍noi.openjudge 3340:RPN Calculator,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://noi.openjudge.cn/ch0303/3340/

描述

Reverse Polish notation (or just RPN) by analogy with the related Polish notation, a prefix notation introduced in 1920 by the Polish mathematician Jan Łukasiewicz, is a mathematical notation wherein every operator follows all of its operands. It is also known as Postfix notation.

In Reverse Polish notation the operators follow their operands; for instance, to add three and four one would write “3 4 +” rather than “3 + 4”. If there are multiple operations, the operator is given immediately after its second operand; so the expression written “3 − 4 + 5” in conventional infix notation would be written “3 4 − 5 +” in RPN: first subtract 4 from 3, then add 5 to that. An advantage of RPN is that it obviates the need for parentheses that are required by infix. While “3 − 4 * 5” can also be written “3 − (4 * 5)”, that means something quite different from “(3 − 4) * 5”, and only the parentheses disambiguate the two meanings. In postfix, the former would be written “3 4 5 * −”, which unambiguously means “3 (4 5 *) −”.

You were asked to design a simple RPN calculator, which will support the “+”, “-“, “*”, “/”(the absolute value of the divisor will not less then 10^-9) and “^”(power operator, if the base number b<=0, the exponential e must be a positive integer not greater than 10^9) operators. You can assume all the numbers during the calculation can fit into a double-precision floating point number.

In addition, our calculator has some memory. Each time we calculate an expression, the smallest number in the memory will be erased, and replace it with the value of the expression.

输入

The first line contains an integer n, which is the memory size of our calculator.

From the second line, we will give n numbers, which is the initial value of the memory. each line except last will have 10 numbers.

And then each line has a valid RPN expression we previously described, end with “=”, which is the command for calculation. Each term will no longer than 20 characters.

输出

For each expression, output the value of it in a line.
And then output an empty line to separate the two parts.
At last, output the all the numbers in memory, in increasing order, 10 numbers per line.

Each number should be formatted in scientific notation with 6 digits after decimal point and 2 digits of exponential, such like “%e” format string of printf() function in C. The numbers in a line should be separated by a space.

样例输入

4
1e6 1e-6 0.001 1000
1 2 + 3 4 + * =
1 0.1 / 8 ^ =

样例输出

2.100000e+01
1.000000e+082.100000e+01 1.000000e+03 1.000000e+06 1.000000e+08

提示

Huge input, scanf() is recommended

%e格式输出在windows环境下指数部分为3位,在系统的测试环境下为2位。

代码

/*
后缀表达式的计算 
用一个栈来存储数字,从左向左右遍历表达式 
遇到数字就压栈 
遇到操作符就弹出栈中的两个数字计算并压栈 
最后栈中剩余的数字是我们要的结果  
*/
#include<iostream>
#include<iomanip>
#include<stdio.h>
#include<math.h>
#include<stack>
#include<queue>
using namespace std;void cal(string param, stack<double> &num)
{double num1=num.top();num.pop();double num2=num.top();num.pop();if(param=="+")num.push(num2+num1);if(param=="-")num.push(num2-num1);if(param=="*")num.push(num2*num1);if(param=="/")num.push(num2/num1);if(param=="^")num.push(pow(num2,num1));
}void bolan(string &param, stack<double> &num)
{if(param!="+" && param!="*" && param!="-" && param!="/" && param!="^")// 遇到数字就入栈 num.push(atof(param.c_str()));else// 遇到操作符就计算,并将结果入栈 cal(param, num);
}int main()
{int n,i,index1,index2,count;string param;cin>>n;// 初始化memorypriority_queue < double,vector<double>,greater<double> > p;vector<double> nums;for(i=0;i<n;i++){double inData;cin>>inData;p.push(inData);}getchar();// 计算后缀表达式的值stack <double> bolan_num;string command;while(getline(cin,command)){index1=0,index2=command.length()-1;// 从右向左遍历表达式 获取操作符和数字for(i=0; i<=command.length(); i++)if(command[i]==' ' || command[i]=='\0'){index2=i;param=command.substr(index1, index2-index1);index1=index2+1;if(param=="="){// 用新计算出的值,替换掉memory中的最小值printf("%e\n",bolan_num.top());p.pop();p.push(bolan_num.top());bolan_num.pop();if(!bolan_num.empty())cout<<"expect empty"<<endl;}elsebolan(param, bolan_num);}}printf("\n");// 输出memory中的值count=0;for(i=1; i<=n; i++){count++;if(i==n)printf("%e",p.top());else if(count%10==0)printf("%e\n",p.top());elseprintf("%e ",p.top());p.pop();}return 0;
}

这篇关于noi.openjudge 3340:RPN Calculator的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/596261

相关文章

Basic Calculator 总结

Basic Calculator 思路:stack中间存数,遇见+,-都当符号位,push num或者-num进去;最后相加;重要的是如何处理括号,那么这里一种方法是用递归调用;count左右括号,如果为0,那么就是一个反括号的位置了,那么 //(      ) //j......i; substring(j + 1, i); 这题的通用解法,可以扩展到二三题; class Solutio

CV-笔记-重读Faster R-CNN即region proposal network(RPN)区域建议网络

目录 RPN region proposal networkanchor参数量 正负样本选择RPN的损失函数训练RPN实现细节整体的网络结构就是这样 Faster R-CNN主要是讲区域建议网络,而ROI pooling部分还是在Fast R-CNN里面介绍的。 RPN region proposal network 利用网络产生region proposal(区域建立,候

NOI大纲——提高组——最小生成树

最小生成树 简介 一个图中可能存在多条相连的边,我们**一定可以从一个图中挑出一些边生成一棵树。**这仅仅是生成一棵树,还未满足最小,当图中每条边都存在权重时,这时候我们从图中生成一棵树(n - 1 条边)时,生成这棵树的总代价就是每条边的权重相加之和。 一个有N个点的图,边一定是大于等于N-1条的。图的最小生成树,就是在这些边中选择N-1条出来,连接所有的N个点。这N-1条边的边权之和是所

openjudge_2.5基本算法之搜索_8783:单词接龙

概要 8783:单词接龙 总时间限制: 1000ms 内存限制: 65536kB 描述 单词接龙是一个与我们经常玩的成语接龙相类似的游戏,现在我们已知一组单词,且给定一个开头的字母,要求出以这个字母开头的最长的“龙”(每个单词都最多在“龙”中出现两次),在两个单词相连时,其重合部分合为一部分,例如beast和astonish,如果接成一条龙则变为beastonish,另外相邻的两部分不能存在包含

openjudge_2.5基本算法之搜索_8465:马走日

题目 8465:马走日 总时间限制: 1000ms 内存限制: 65536kB 描述 马在中国象棋以日字形规则移动。 请编写一段程序,给定n*m大小的棋盘,以及马的初始位置(x,y),要求不能重复经过棋盘上的同一个点,计算马可以有多少途径遍历棋盘上的所有点。 输入 第一行为整数T(T < 10),表示测试数据组数。 每一组测试数据包含一行,为四个整数,分别为棋盘的大小以及初始位置坐标n,m,

RPN具体生成细节

在这里假设我们想生成100:100、300:300、500:500及1:1、1:2、2:1三种尺寸三种比例的图像,这里要注意100:100的1:2尺寸不是100:200,而是100/√2:100*√2大约71:141,因为同一尺寸的三种比例变化后图像的面积要保存一致 假设以原点为矩阵中心点,生成的9个anchor如下(x1,y1,x2,y2) 然后再把这9个anchor进行x,y方向的平移

Basic Calculator

题意: 写一个简单的计算器,此计算器只有加法,减法及括号操作 分析: 开两个栈,一个村操作数,一个村操作符,其中+与-同级,当一个操作符要进栈时,判断操作符栈顶元素,若是同级,则让操作数栈出栈两个数,操作符栈出栈栈顶元素,然后将计算出的结果存入操作数栈,待进栈操作符进栈;当遇到左括号时,果断进栈,遇到右括号,则先计算括号中的结果,然后对应的左括号出栈; 最终使得操作符栈为空,计算出的结果即

Mediapipe 在RK3399PRO上的初探(二)(自定义Calculator)

PS:要转载请注明出处,本人版权所有。 PS: 这个只是基于《我自己》的理解, 如果和你的原则及想法相冲突,请谅解,勿喷。 环境说明 Ubuntu 18.04gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)RK3399PRO 板卡 前言   本文有一篇前置文章为《Mediapipe 在RK3399PRO上的初探(一)(编译、运行CPU和GPU

UVa 11549 Calculator Conundrum / floyd判圈算法

题意是输入n k 然后只能显示k的前n位 然后k等于前n位的平方如此反复 求最大出现的数字 可以用map 或者set 新学了一个floyd判圈算法 就是比如2个赛跑 第二个比第一个速度快1倍 圆形跑道可以追上第一个人 这里就另k1做一次next  k2做2次next 如果k1 == k2 就break  说明出现循环了 代码是书上的   #include <cstdio>#

CCF NOI 1049.旋转图像

题目描述 输入一个n行m列的黑白图像,将它顺时针旋转90度后输出。 输入 第一行包含两个整数n和m,表示图像包含像素点的行数和列数。1 <= n <= 100,1 <= m <= 100。 接下来n行,每行m个整数,表示图像的每个像素点灰度。相邻两个整数之间用单个空格隔开,每个元素均在0~255之间。 输出 m行,每行n个整数,为顺时针旋转90度后的图像。相邻两个整数之间用单个空格隔开。