AlimA's blog

By AlimA, 12 years ago, In English

Hi everyone

I got WA on test 5 for problem #151.

This is my code.

Can anyone help me?

UPD: after month I tried to code this problem again, but again WA on test 5 ! :( This is my new code. Can you help me? Thx in advance :).

  • Vote: I like it
  • +2
  • Vote: I do not like it

»
12 years ago, # |
  Vote: I like it +9 Vote: I do not like it

when you find acos(angle), try to replace it finding just cosa, and sina = 1. — cos^2(a), may be it is because of the loss of precision... I don't know exactly

  • »
    »
    12 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Thank you very much. But when i changed my code as you said, it got WA on test 1!!!!!! I am really confused. I can not find the mistake.

    • »
      »
      »
      12 years ago, # ^ |
        Vote: I like it +3 Vote: I do not like it

      you make some unnecessary actions, firstly you found cos(alfa) then took alfa = acos(alfa), further again cos(alfa), it may be lose a precision; P.S you confused b and c, AB's length is c, AC's length is b

      • »
        »
        »
        »
        12 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        yes you are right, but i had changed it when i resubmitted (new code) and about the other thing: again you are right but i think i have done it rightly. i put point A on the origin and AB on the X axis.

        • »
          »
          »
          »
          »
          12 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          of course) but the order must be A, B, C; here some fragments from statement: "**|AB|=c, |AC|=b**", "_Write coordinates of point A to first line, coordinates of B to second line and coordinates of C to third line_" That's why the point B will be on the distance c from A, C on the b distance from A;

»
11 years ago, # |
  Vote: I like it 0 Vote: I do not like it

No one helps? :(

»
3 years ago, # |
  Vote: I like it +8 Vote: I do not like it

After changing my solution output for the test 1 3 2 from Mission impossible to 3 collinear points (degenerate triangle), I got AC instead of WA on test5.