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 :).
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
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 :).
Name |
---|
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
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.
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
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.
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;
No one helps? :(
After changing my solution output for the test
1 3 2
fromMission impossible
to 3 collinear points (degenerate triangle), I got AC instead of WA on test5.