21565_ConnecttheCows

2022-5-16 18:19| 发布者: Hocassian| 查看: 28| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-4-89505645575800-Problem List-采集的数据-后羿采集器.html

Pro.ID

21565

Title

Connect the Cows

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21565

AC

8

Submit

57

Ratio

14.04%

时间&空间限制

  • Time Limit: 4000/4000 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Others)
  • 描述

    Every day, Farmer John walks around his farm to check on the health and well-being of his N (1 ≤ N ≤ 10) cows.

    The location of each cow is described by a point in the 2D plane, and Farmer John starts out at the origin (0,0).  To make his route more interesting, Farmer John decides that he will only walk in directions parallel to the coordinate axes -- that is, only north, south, east, or west.  Furthermore, he only changes his direction of travel when he reaches the location of a cow (he may also opt to pass through the location of a cow without changing direction, if desired).  When he changes his direction of travel, he may make either a 90-degree or 180-degree turn.  FJ's route must take him back to the origin after visiting all his cows.

    Please compute the number of different routes FJ can take to visit his N cows, if he changes direction exactly once at the location of each cow.  He is allowed to pass through the location of a cow without changing direction an arbitrary number of times.  The same geometric route taken forward versus backward counts as two different routes.

    输入

    多测试。

    * Line 1: The integer N.

    * Lines 2..1+N: Line i+1 contains the x and y coordinates (space-separated) of the i-th point (each values is in the range -1000...1000).

    输出

    Description

    Every day, Farmer John walks around his farm to check on the health and well-being of his N (1 ≤ N ≤ 10) cows.

    The location of each cow is described by a point in the 2D plane, and Farmer John starts out at the origin (0,0).  To make his route more interesting, Farmer John decides that he will only walk in directions parallel to the coordinate axes -- that is, only north, south, east, or west.  Furthermore, he only changes his direction of travel when he reaches the location of a cow (he may also opt to pass through the location of a cow without changing direction, if desired).  When he changes his direction of travel, he may make either a 90-degree or 180-degree turn.  FJ's route must take him back to the origin after visiting all his cows.

    Please compute the number of different routes FJ can take to visit his N cows, if he changes direction exactly once at the location of each cow.  He is allowed to pass through the location of a cow without changing direction an arbitrary number of times.  The same geometric route taken forward versus backward counts as two different routes.

    Input

    多测试。

    * Line 1: The integer N.

    * Lines 2..1+N: Line i+1 contains the x and y coordinates (space-separated) of the i-th point (each values is in the range -1000...1000).

    Output

    * Line 1: The number of different routes FJ can take (this could be zero if there are no valid routes).

    Sample Input

    4
    0 1
    2 1
    2 0
    2 -5

    Sample Output

    2

    Hint

    INPUT DETAILS:

    There are 4 cows, at positions (0,1), (2,1), (2,0), and (2,-5).

    OUTPUT DETAILS:

    There are two different routes: Farmer John can visit cows in the orders 1-2-4-3 or 3-4-2-1 before returning to the origin.

    Source

    样例输入

    4
    0 1
    2 1
    2 0
    2 -5

    样例输出

    2

    提示

    INPUT DETAILS:

    There are 4 cows, at positions (0,1), (2,1), (2,0), and (2,-5).

    OUTPUT DETAILS:

    There are two different routes: Farmer John can visit cows in the orders 1-2-4-3 or 3-4-2-1 before returning to the origin.


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部