Cod sursa(job #3282345)

Utilizator robertcosacCosac Robert-Mihai robertcosac Data 5 martie 2025 10:49:55
Problema Bool Scor 70
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 1.61 kb
#include <fstream>
#include <string>
#include <cstring>
#include <map>
using namespace std;
ifstream f("bool.in");
ofstream g("bool.out");
char s[100009];
int poz=1;
map <char, int> m;
int calc ();
int termen ();
int factor ();
int calc ()
{
    bool x=termen();
    while (s[poz]==' ') poz++;
    while (s[poz]=='O' && s[poz+1]=='R')
    {
        poz+=2;
        while (s[poz]==' ') poz++;
        x=(x|termen());
        while (s[poz]==' ') poz++;
    }
    return x;
}
int termen ()
{
    bool x=factor();
    while (s[poz]==' ') poz++;
    while (s[poz]=='A' && s[poz+1]=='N' && s[poz+2]=='D')
    {
        poz+=3;
        while (s[poz]==' ') poz++;
        x=(x&factor());
        while (s[poz]==' ') poz++;
    }
    return x;
}
int factor ()
{
    while (s[poz]==' ') poz++;
    if (s[poz]=='(')
    {
        poz++;
        return calc();
        poz++;
    }
    bool sch=0;
    while (s[poz]==' ') poz++;
    if (s[poz]=='N' && s[poz+1]=='O' && s[poz+2]=='T')
    {
        sch=1;
        poz+=3;
        return 1-factor();
    }
    while (s[poz]==' ') poz++;
    if (s[poz]=='T' && s[poz+1]=='R' && s[poz+2]=='U' && s[poz+3]=='E')
    {
        poz+=4;
        return 1;
    }
    if (s[poz]=='F' && s[poz+1]=='A' && s[poz+2]=='L' && s[poz+3]=='S' && s[poz+4]=='E')
    {
        poz+=5;
        return 0;
    }
    char ch=s[poz];
    return m[s[poz]];
}
int main ()
{
    f.getline (s+1, 100001);
    int n;
    f >> n;
    while (n--)
    {
        char ch;
        f >> ch;
        m[ch]=1-m[ch];
        poz=1;
        g << calc ();
    }
}