Show all threads Hide all threads Show all messages Hide all messages | Wa 18 | FaNato4kA_TiMoFeYa | 1768. Circular Strings | 15 Aug 2024 12:58 | 1 | Wa 18 FaNato4kA_TiMoFeYa 15 Aug 2024 12:58 Don't forget about the stars) | WA 3 | Otrebus | 1768. Circular Strings | 1 May 2021 17:30 | 1 | WA 3 Otrebus 1 May 2021 17:30 The coordinates are given in the traversal order. | Some useful tests | platonshubin | 1768. Circular Strings | 2 Dec 2017 14:14 | 2 | One of them was found on the forum, too. 4 0 0 0 1 1 1 1 0 YES 5 0,654508 0,0244717 0,0954915 0,206107 0,0954915 0,793893 0,654508 0,975528 1 0,5 YES 5 1 0,5 0,654508 0,975528 0,0954915 0,793893 0,0954915 0,206107 0,654508 0,0244717 YES 12 -0,1 0,3 0,1 0,3 0,1 0,1 0,3 0,1 0,3 -0,1 0,1 -0,1 0,1 -0,3 -0,1 -0,3 -0,1 -0,1 -0,3 -0,1 -0,3 0,1 -0,1 0,1 NO 8 0 0 0 -1 1 -1 1 0 0 0 0 1 1 1 1 0 NO 5 0.654508 0.0244717 0.0954915 0.206107 0.0954915 0.793893 0.654508 0.975528 1 0.5 5 1 0.5 0.654508 0.975528 0.0954915 0.793893 0.0954915 0.206107 0.654508 0.0244717 12 -0.1 0.3 0.1 0.3 0.1 0.1 0.3 0.1 0.3 -0.1 0.1 -0.1 0.1 -0.3 -0.1 -0.3 -0.1 -0.1 -0.3 -0.1 -0.3 0.1 -0.1 0.1 Edited by author 02.12.2017 15:12 | WA 12 | MOPDOBOPOT (USU) | 1768. Circular Strings | 2 Dec 2014 20:42 | 2 | WA 12 MOPDOBOPOT (USU) 15 Aug 2012 20:37 My algo is to check that: 1) all spins done in same side 2) all sides are equal 3) all angles are equal 4) in any comparsions precision equals 0.000001 (I tried many variants of precision but got WA12 in any case) It's hard for me to find tests in this problem :( What the hell is 12 test? Edited by author 04.10.2012 12:13 make sure every edge longer than 1e-6 | WA 37! | IgorKoval(from Pskov) | 1768. Circular Strings | 6 Feb 2012 23:54 | 2 | WA 37! IgorKoval(from Pskov) 7 Oct 2011 02:13 If WA 37 then add this code( check: if there exist equal points ): ////////////////////// void no(){ puts("NO"); exit(0); } ////////////////////// inline bool equal_lf( const double x, const double y ){ return fabs(x-y)<=EPS; return fabs(x-y) <= EPS*max( fabs(x),fabs(y) ); } ////////////////////// int main(){ ///////////lalalalalalalal for( short i = 0; i < n; ++i ){ for( short j = i+1; j < n; ++j ){ if( equal_lf(p[i].x,p[j].x) && equal_lf(p[i].y,p[j].y) ) no(); } } Re: WA 37! [SESC USU] Zhirov Eugene 6 Feb 2012 23:54 | WA #4 | [SESC USU] Zhirov Eugene | 1768. Circular Strings | 6 Feb 2012 23:35 | 2 | WA #4 [SESC USU] Zhirov Eugene 30 Jan 2012 20:50 I've tried many times, what's wrong? All eps between 1e-10 and 1e-5 have given this. Any ideas? I use a trivial algo, maybe another one exists? Re: WA #4 [SESC USU] Zhirov Eugene 6 Feb 2012 23:35 Found the way out. It helped me: 3 0 0 0 0 0 0 NO Edited by author 06.02.2012 23:36 | 2 admins - 2 | DK [Samara SAU] | 1768. Circular Strings | 26 Oct 2011 00:34 | 11 | your 8h test is incorrect, the answer is ALWAYS NO if n != 4 if u contact me, I'll give you the prove Why do you think so? Do you mean there is no n-gons for n != 4 ? :) Regular n-gons with n != 4 can't have all vertixes with rational coordinates. But it's said in the statement that coordinates are given with some accuracy, so I think it's ok. Not, all is not OK cause to program with absolute precision will fail with WA. there are some problems like this: 4 0 0 0 1 1 1 1 0 //YES, obviously 4 0 0.000009 0 1 1 1 1 0 //YES or incorrect test due to 10^-5 restriction?! 4 0 0.00000000000000000000000000009 0 1 1 1 1 0 //YES or incorrect test due to 10^-5 restriction?! In the statement you may see two numbers: 10^{-5}, 10^{-10} So about your tests: The first, you are right, is YES, obviously. The second does not exist (By the statement, there are no such tests in testset!) The third is same to the first. why is 10^{-10} a minimal guarantees for 'YES' answer? this is just input precision. Edited by author 12.04.2010 03:49 I think that statement need an additional guarantee like "It is guaranteed that in the case of the positive answer the coordinates of the points can be changed by less than 10^(−10) [or another magic constant from jury solution] so that they become the coordinates of vertices of a regular n-gon written in the traversal order" For example, test: 5 1 0.5 0.654508, 0.975528 0.0954915, 0.793893 0.0954915, 0.206107 0.654508, 0.0244717 The answer is "YES" !!! Try this interesting test: 4 0 0.333333 0.5 0.666667 1 0.333333 0.5 0 The answer is NO. Edited by author 18.04.2010 11:57 I think, that answer on this test: 4 0.0000199999 0.0000100000 0.0000000001 0.9999900000 0.9999999999 0.9999900000 0.9999800001 0.0000100000 is YES for example, the resulting points are 0.00001 0.00001 0.00001 0.99999 0.99999 0.99999 0.99999 0.00001 but my AC program answers NO And I still think that this problem is much more hard, that author thinks, because of different precisions in the statement. | Some questions on the problem | mago_nn | 1768. Circular Strings | 7 Feb 2011 19:32 | 3 | If some points coincide, then the answer is yes or no? Edited by author 21.03.2011 02:21 | Please help me | Tigran92[RAU_902] | 1768. Circular Strings | 19 Nov 2010 20:07 | 1 | Who can tell me what is wrong? // Geometry.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <queue> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> using namespace std; #define sz(a) (a.size()) #define all(a) (a.begin(),a.end()) #define Sort(a) (sort(all(a))) #define pb (push_back) #define dump(x) cerr<<#x<<" = "<<(x)<<endl; #define debug(x) cerr<<#x<<" = "<<(x)<<" (L"<< __LINE__ <<")"<<" "<< __FILE__ <<endl; #define eps 1e-7 int sign (double x) { return ((x)>eps?1:((x)<-eps?2:0));} const double PI=acos(-1.0); const int INF=2100000000; struct point { double x; double y; }; struct line { point a; point b; }; double mult(point p1,point p2,point p0){ return (p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y); } double sqrdist(point a,point b){ return ((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y)); } int is_convex(int n,point *p){ int i,s[3]={1,1,1}; for(i=0;i<n && s[1]|s[2];i++){ double x=(mult(p[(i+1)%n],p[(i+2)%n],p[i])); s[sign(x)]=0; } return s[1]|s[2]; } bool dist(int n,point *p){ double dis=sqrdist(p[0],p[1]); int i; for(i=0;i<n;i++){ if(fabs(dis-sqrdist(p[i],p[(i+1)%n]))>=eps){ return (false); } } return (true); } double distance1(point a,point b){ return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y)); } double getangle(point a,point b,point c){ double sq=((a.x-b.x)*(a.y-c.y)-(a.x-c.x)*(a.y-b.y)); double ab=distance1(a,b); double bc=distance1(b,c); double sinphi=(ab*bc)/sq; return asin(sinphi); } bool isangles(int n,point *p){ double sinphi=getangle(p[0],p[1],p[2]); int i; for(i=0;i<n;i++){ if(fabs(sinphi-getangle(p[i],p[(i+1)%n],p[(i+2)%n]))>eps){ return (false); } } return (true); } bool isRight(int n,point *p){ if(dist(n,p) && is_convex(n,p) && isangles(n,p)){ return (true); } return (false); } int main(){ int n; int i; cin>>n; point *p=new point [n]; for(i=0;i<n;i++){ cin>>p[i].x; cin>>p[i].y; } (isRight(n,p))?(puts("YES")):(puts("NO")); return (0); } | Test 18 | bsu.mmf.team | 1768. Circular Strings | 24 Oct 2010 11:27 | 11 | Test 18 bsu.mmf.team 16 Apr 2010 00:01 What the fucking test is it? I failed on it many times, using every possible precision in calculations! I used Eps=1E-7 to compare two numbers and got Ac. I used it too... By the way, maybe my algo is wrong? I calculated the distances between i-th and (i+1)-th poitns and the distances between i-th and ((i+n/2) mod n)-th points if n is even or between i-th and a middle of segment, which is constructed by ((i+(n-1)/2) mod n)-th and ((i+(n+1)/2) mod n)-th points if n is odd. If these distances are equal, then "YES" Edited by author 17.04.2010 01:44 OK, what counter-test do you know then? :) what will be your answer if the polygon is not convex?? Oh! You are right, my program outputs "YES" on some special tests, but the answer should be always "NO"! Thank you! Now I've got AC. Simple algo with checking if points lie on a circumference and Point[i].x = x0 + R*cos(a0 + 2*k*PI/n), Point[i].y = y0 + R*sin(a0 + 2*k*PI/n) is true for sure. I just wanted to implement my "exotic" algo there :)))) But it was wrong... Edited by author 18.04.2010 12:11 I used your algo,but always wa4 ,why? I think that most Ac are by the chance, varing eps. If impossible to solve from the fist submission the problem is incorrect. I think right uderstanding the problem is following: Let P=<P1,...,Pn>-given n-polygon and r(P)=min(max dist(Pi-Qi),on all ideal n-polygons Q=<Q1,...,Qn>) if(r(P)<=1.e-5) YES else NO. That is optimization problem. P.S. I glad to say that under above consideration I got AC immidiately, while using chaotic eps-using had 12 WA 18. Edited by author 24.10.2010 12:41 | PLEASE TELL ME WHAT IS WRONG?????? | HTL[1 course of RAU] | 1768. Circular Strings | 18 Apr 2010 19:37 | 1 | OH I've found my mistake!!!!! Edited by author 19.04.2010 17:58 Edited by author 19.04.2010 17:59 | 2 admins | DK [Samara SAU] | 1768. Circular Strings | 14 Apr 2010 04:03 | 3 | 2 admins DK [Samara SAU] 11 Apr 2010 16:29 It could be proven that for n != 4 there is always 'NO' answer. Is it right for each test? e.g. in test 8 n != 4 and answer is 'YES'. With absolute precision of calculations u will get 'NO' I read your posts very attentievely, but I didn't understand what exactly you mean. What's about test: 5 1 0.5 0.654508, 0.975528 0.0954915, 0.793893 0.0954915, 0.206107 0.654508, 0.0244717 I am sure the answer is YES | wtf | LNU United [Lviv NU] | 1768. Circular Strings | 11 Apr 2010 18:55 | 1 | wtf LNU United [Lviv NU] 11 Apr 2010 18:55 | Questions on the problem | LSBG | 1768. Circular Strings | 11 Apr 2010 17:36 | 1 | Can the polygon vertices be given in clockwise order and the answer still be yes? Can I have coinciding points and the answer still be yes (so do I aim for regular exactly n gon?) |
|
|