dont forgot about solo points And also not using G constant :) The most important functions are listed below: // Judge if there exist a parabola passing P[a] and P[b] // The validation of direction of the parabola is included in the positive sign bool Valid(int a, int b) { if (P[a].x == P[b].x) return false; else return (P[a].x - P[b].x) * (P[a].x * P[b].y - P[b].x * P[a].y) > 0; } // Judge if the parabola passing P[a] and P[b] also passes P[c] // Using the determinant for judgement bool Pass(int a, int b, int c) { return (P[a].x * P[a].x) * P[b].x * P[c].y + P[a].x * P[b].y * (P[c].x * P[c].x) + P[a].y * (P[b].x * P[b].x) * P[c].x - (P[a].x * P[a].x) * P[b].y * P[c].x - P[a].x * (P[b].x * P[b].x) * P[c].y - P[a].y * P[b].x * (P[c].x * P[c].x) == 0; } Note: using long integers (64-bit) to avoid overflow. Good luck. Do not derive them by hand, use Maxima: p: a*x^2+b*x=y; s: solve([ev(p,x=x1,y=y1),ev(p,x=x2,y=y2)],[a,b])[1]; a < 0,s; m: denom(lhs(ev(p,s,ratsimp))); e: ev(p,s) * m, ratsimp; to print as source code use fortran(e); It is also a good idea to use macro to avoid typos: bool on_par(int a, int b, int c){ // [c] on the same parabola as [a] and [b] # define _(a,b,c) x[c]*x[a]*(x[c]-x[a])*y[b] return _(a,b,c) - _(b,a,c) == _(a,c,b); # undef _ } I've got AC then complete test for a<0 && b!=0: 1 999 2 999 3 0 4 1 5 2 answ 3... Good Luck! Edited by author 23.10.2011 01:27 Edited by author 23.10.2011 04:20 This is not correct test =) In russian vertion of problem "В каждой из пяти строк входа находится пара целых положительных(!!!!) чисел, не превосходящих" There are no points with negative x. Use assert to test such things. Test 5 is likely about points that have the same x. What is it? So, in russian vertion of problem x[i]>0, y[i]>0... is it true? Whether is there any mistake while doing translation from English to Russian? Where should I seek an error? Edited by author 24.01.2017 00:30 Edited by author 24.01.2017 00:30 I passed it, there was an defect in my algo :-) Edited by author 30.04.2015 23:51 wa on test24 who can help me!= = what's the data? I have a problem when comparing real numbers private static double EPS = 0.33333333333333; public static boolean eq (double a, double b) { return Math.abs (a - b) <EPS; } when checking whether a given point belongs to a parabola, I simply substitutes the x and y the function (y = x ^ 2 * a + x * b) I can not pass the test 57 Edited by author 18.09.2012 18:13 Edited by author 27.05.2014 23:45 the fact that a decrease in EPS say up to 1E-10 then the program does not pass the test 13 Edited by author 18.09.2012 19:14 Edited by author 27.05.2014 23:46 I found a suitable number: 0.000050010002, but it is only for java (passes 62nd), for C++10 does not work, a stop on the 57th. Apparently my solution is not suitable for this task. Edited by author 27.05.2014 23:46 Set aside the alarm! Number: 1e-8. (I found on the forum) I can't imagine what can it be couse i tried all tests from another topic and also mine but all of my and other's tests it solves, but test #3 Could you help me? By binary search and submitting find this test =) Test 3 is 1 5 2 8 3 10 4 9 5 5 answer is 2 parabola function helps for you !!! k = x1 * x2 * (x2 - x1); a = y2 * x1 - y1 * x2; // a = (y2 * x1 - y1 * x2) / k; b = y1 * x2 * (x2 - x1) - a * x1; // b = (y1 * x2 * (x2 - x1) - a * x1) / k if(y[i] * k == a * x[i] * x[i] + b * x[i]) delete index i ... it is not necessary, it was comparing the real numbers What is in test №2? Try 1 1 2 2 3 3 4 4 5 5 """"It is guaranteed that there is no straight line containing the slingshot and more than one monkey."""" This test is not correct. =) You are right, sorry. Try also 1 1 2 4 3 9 4 16 5 25 Try my test: 1 1 1 2 1 3 1 4 1 5 ans: 5 Test #2 1 5 2 8 3 10 4 8 5 5 ans : 2 1 1 2 4 3 9 4 8 5 5 ans : 3 !!!!!! =) when we draw parabola y = a*x*x+b*x, be careful, this must be: a<0 and b!=0 P.S.: hint: fabs( p[i].y - a*p[i].x*p[i].x - b*p[i].x ) <= 1e-10( don't use p[i].y = a*p[i].x*p[i].x + b*p[i].x ) My solution got AC only on fabs()<=1e-8 fabs()<=1e-9 had WA#26 (!) fabs()<=1e-7 had WA#57 (!!!) I'm Angry very much. To avoid be angry! How verify that big number D==0? You may use next idea: int p[6]={61,67,59,53,41,47}; for(i=1;i<=6;i++) if(D%p[i-1]>0) break; if (i>6) return true; More rightly: We can solve problem 6 times in fields Z(61),...,Z(47) All numbers will be not greater 100, but if in all fields D==0 then in N also D==0. P.S. I appled this idea. I had problems with logics but no problems with precision and 5 -is oldest WA test for me. Edited by author 25.10.2011 13:05 I pass all the tests in the topic and have set the precision but still get WA#14. Last test is not correct, because of point (1,1) and (5,5) belong same line. You are right, sorry. Try also 1 1 2 4 3 9 4 16 5 25 ans: 5 =) Thank you!!! Edited by author 22.10.2011 23:32I used eps=0, eps=1e-10,1e-9,1e-8,1e-7, but #45 is wrong with each eps(( may i use 'struct' in my programm? Edited by author 25.10.2011 21:34 Yes! =) for example struct pointT{ double x, y; pointT(){ x = y = 0.0L;} pointT( double _x, double _y ){ x = _x; y = _y; } }; |
|