Openjudge Boolean Expressions

Boolean Expressions
查看 提交 统计 提问
总时间限制: 1000ms 内存限制: 65536kB
描述
The objective of the program you are going to produce is to evaluate boolean expressions as the one shown next:
Expression: ( V | V ) & F & ( F | V )

where V is for True, and F is for False. The expressions may include the following operators: ! for not , & for and, | for or , the use of parenthesis for operations grouping is also allowed.

To perform the evaluation of an expression, it will be considered the priority of the operators, the not having the highest, and the or the lowest. The program must yield V or F , as the result for each expression in the input file.
输入
The expressions are of a variable length, although will never exceed 100 symbols. Symbols may be separated by any number of spaces or no spaces at all, therefore, the total length of an expression, as a number of characters, is unknown.

The number of expressions in the input file is variable and will never be greater than 20. Each expression is presented in a new line, as shown below.
输出
For each test expression, print “Expression ” followed by its sequence number, “: “, and the resulting value of the corresponding test expression. Separate the output for consecutive test expressions with a new line.

Use the same format as that shown in the sample output shown below.
样例输入
( V | V ) & F & ( F| V)
!V | V & V & !F & (F | V ) & (!F | F | !V & V)
(F&F|V|!V&!F&!(F|F&V))
样例输出
Expression 1: F
Expression 2: V
Expression 3: V
来源
México and Central America 2004

这题递归写的真心累啊!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include<iostream>
#include<cstring>
#include<stack>
using namespace std;
bool mid();
bool ma();
bool mi();
char getc_(){
    char c;
    while((c=cin.get())==' ');
    return c;
}
char peekc_(){
    char c;
    while((c=cin.peek())==' '){
        cin.get();
    }
    return c;
}
bool mi(){
    char c=peekc_();
    if(c=='('){
        getc_();
        bool r=ma();
        getc_();
        return r;
    }else{
        getc_
        ();
        if(c=='!')return !mi();
        if(c=='F')return false;
        if(c=='V')return true;
    }
}
bool mid(){
    bool a=mi();
    while(true){
        char c=peekc_();
        if(c=='&'){
            getc_();
            bool b=mi();
            a=a&&b;
        }
        else break;
    }
    return a;
}
bool ma(){
    if(peekc_()=='\n')return false;
    bool a=mid();
    while(true){
        char c=peekc_();
        if(c=='|'){
            getc_();
            bool b=mid();
            a=a||b;
        }
        else break;
    }
    return a;
}
int main(){
    int n=0;
    while(cin.peek()!=EOF){
        n++;
        bool f=ma();
        if(cin.peek()=='\n'||cin.peek()==EOF){
            cout<<"Expression "<<n<<": "<<(f?'V':'F')<<endl;
            cin.get();
        }
    }
}

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注