ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1027. D++ Again

I optionally typed some lines and immediately got accepted
Posted by XueMao 31 May 2003 14:10
A Important Hint :
look at several important parts of my program

      if (c='(') then
      begin
        if t1<1 then
        begin
          inc(t);
          bj:=1;
        end
        else bj:=0;
      end
...
...
...
      else if (c='*')and(e='(') then {here e means the just pre char}
      begin
        if t1=0 then  {this line ! }
        begin
          c:=' ';
          inc(t1);
          if bj=1 then dec(t);
        end;
      end

I hope that this will help you .