fork download
  1. #堀江
  2. def f(x,y,r)
  3. if x*x+y*y<r*r then
  4. return 1
  5. else
  6. return 0
  7. end
  8. end
  9.  
  10. l1=gets.split(" ")
  11. n=l1[0].to_i
  12. x,y,r,t=l1.map{|e| e.to_f}[1,4]
  13.  
  14.  
  15. t1=-t/180*Math::PI
  16. cos1=Math.cos(t1)
  17. sin1=Math.sin(t1)
  18. n.times{
  19. px1,py1,px2,py2=gets.split(" ").map{|e| e.to_f}
  20. px1-=x
  21. py1-=y
  22. px2-=x
  23. py2-=y
  24. c1=f(px1,py1,r)+f(px2,py2,r)
  25. ans="No"
  26. py1r=px1*sin1+py1*cos1
  27. py2r=px2*sin1+py2*cos1
  28.  
  29. if c1==0 then
  30. ans="No"
  31. elsif c1==2 then
  32. ans="Yes" if 0.0<=py1r || 0.0<=py2r
  33. else
  34. ans="Yes" if f(px1,py1,r)==1 && 0.0<=py1r
  35. ans="Yes" if f(px2,py2,r)==1 && 0.0<=py2r
  36. end
  37. puts ans
  38. }
  39.  
Success #stdin #stdout 0.01s 8144KB
stdin
15 5 -5 10 90
-4 -5 15 -5
-4 -5 15 -4
-4 -5 15 -6
-4 -5 15 5
-4 -5 15 -15
6 -5 15 -5
6 -5 15 -4
6 -5 15 -6
6 -5 15 5
6 -5 15 -15
-6 -5 -6 5
-6 -5 -6 -15
-6 -5 -15 -5
4 4 6 -14
4 4 -4 -5
stdout
Yes
Yes
Yes
Yes
Yes
No
No
No
No
No
No
No
No
Yes
Yes