Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
Language: Simplified λ-evaluations
Description Lambda calculus is the main theoretical core of functional languages. It is based on evaluating λ-expressions. A λ-expression is a string of characters consisting either of 1) a single constant (for example t), or 2) a function definition written as L‹var›.‹body›, where L denotes , ‹var› is always some variable (for example x) that can occur in the ‹body›, which is again some λ-expression, or 3) an application of some ‹function› (for example f) to an ‹argument› (for example x), in our case written as (f)x, both ‹function› and ‹argument› are λ-expressions. The occurrences of variable ‹var1› in an expression E are called bound, if they are inside of the ‹body› of some sub-expression L‹var1›.‹body› of E. Variable occurrences that are not bound are called unbound. Evaluation of λ-expression results in another λ-expression and is performed using the following rules:
We limit the expressions to contain a single-character lowercase (a…z) variables and constants only. Sometimes the evaluation never stops. Your program should perform at most 1000 function applications when evaluating any λ-expression. During all evaluation steps, the evaluated λ-expression will not exceed 10000 characters. Here are some examples of evaluation of simple λ-expressions (shown in several steps, the text behind ; is a comment):
Note that the scope of the variable next to λ covers only the body of the lambda expression, and the same variable can occur at other places of the expression, for example:
The body of the λ-expression can contain unbound variables - constants:
Finally note that our evaluation is simplified as compared to the real λ-calculus: when the argument is substituted for all unbound occurrences of some variable during function application, some of the variable occurrences in the argument that were previously unbound can become bound… This is normally solved by renaming all the variables in the argument before the function application, and keeping track of correct substitutions. In this problem, you don’t need to take care of this.
The Department of Programming Languages decided to implement a new functional language. However, they first need a core engine that will evaluate λ -expressions. Write a program that will read a set of expressions from the input file and output their evaluations. Input The input contains set of λ-expressions, one per line. Only the last line contains the expression consisting of a single constant z. You can assume that the input is correct. Output The output should contain the result of evaluation of the expressions on the input in the same order as they appear in the input including the last line. If the expression leads to more than 1000 function applications, the line should contain single word “unterminated”. Sample Input Lq.q ((Lx.Ly.(x)y)Lz.z)Lq.q (Lx.x)x ((((Lm.Ln.Lf.Lx.((m)f)((n)f)x)Lo.Lt.(o)t)Lu.Lv.(u)(u)v)a)b (Lx.(x)x)Lx.(x)x (q)(Lx.Lx.x)z z Sample Output Lq.q Lq.q x (a)(a)(a)b unterminated (q)Lx.x z Source |
[Submit] [Go Back] [Status] [Discuss]
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator