#Lutece0718. Dimensions
Dimensions
Migrated from Lutece 718 Dimensions
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
You and your friend Christian have decided to take a vacation year and travel all around the world to see magnificent places, meet wonderful people, and experience new cultures. Unfortunately, with different cultures come difficult differences. And the hardest differences engineers like you know of are unit differences. Why are people using miles, firkins, microfortnights, candlepowers, boisseaux, foes, pints, kWh and not to mention degrees Celsius when they instead would be much happier using the standard and beloved SI units of metres, kilograms, seconds, amperes, kelvins and candelas?
Quantity | Name | Symbol |
---|---|---|
length | metre | $m$ |
time | second | $s$ |
mass | kilogram | $kg$ |
electric current | ampere | $A$ |
temperature | kelvin | $K$ |
luminous intensity | candela | $cd$ |
Table 1: List of SI units
In fact, you love the SI units so much that you refuse to use any other units. Derived units like the joule (), the newton (), and the ohm () are perfectly expressible in their equivalent SI units of , , and , respectively. So during your travel, you record all units you come across, along with their definitions. Of course,some definitions are depending on other definitions, like .
With your definitions ready at hand, you don't have to put up with such nonsense as firkins / microfortnights or anymore, since you can always convert them SI units. Even calculations like and become a breeze to you.
Input
The following syntax is given (?
denotes "zero or one", +
denotes "one or more", and *
denotes "zero or more"):
power ::= { integer larger than 1 }
unit ::= { upper or lower case English letter }+
dimension ::= unit ['^' power]?
size ::= {any floating-point number} [' ' dimension]* ['/' [' ' dimension]+]?
operator ::= '+' OR '-' OR '*'
expression ::= size ' ' operator ' ' size
unit definition ::= unit ' = ' size
All units have length less than , and in a size, no units are repeated.
The first line of the input consists of a single integer , the number of new units.
Then follow lines with new unit definitions. After the unit definitions follows a line with a single integer , and then lines with either an expression or a size.
In the input, all powers are less than , and all units are SI unit symbols or previously defined units.
Units are case sensitive.
No lines are longer than characters.
No input, output or part of any computation have size of absolute value above .
No input, output or part of any computation have unit exponents of absolute value above .
No part of any computation will yield division by .
Please, output the value in Scientific notation, and round to , i.e. you can use %.3E
to output the value.
Output
For each computation, output one line with the answer to the expression, or the size itself, converted to SI units. If the answer cannot be computed, output "Incompatible"(without the quotes). The answer should be formatted as a size, with the following clarifications:
- Keep the units on the correct side of the division sign, and for each side, the units must be written in orders given in the list:
m, s, kg, A, K, cd
. - Do not output a unit if its exponent is , or its exponent if it is equal to .
- Output one space between each unit and between units and the division sign,
\
. - Do not output any spaces before or after the exponent sign,
^
.
Samples
4
km = 1000 m
h = 3600 s
J = 1 kg m^2 / s^2
X = 3 m^2 kg s / A K cd^4
4
100 m + 1.3 km
63 km / h
1E5 J * 0.003 h^2 / km^2
1 J - 2 X
1.400E+03 m
1.750E+01 m / s
3.888E+03 kg
Incompatible
Note
Make sure that you are using %.3E
to output your answer. For windows-users, your output for the first test case might look like 1.400E+003 m
instead of the sample output above, but that's OK, just submit and see your result.
Resources
IDI Open 2013 Programming Contest