zoukankan      html  css  js  c++  java
  • POJ 2653--Pick-up sticks(判断线段相交)

    Pick-up sticks
    Time Limit: 3000MS   Memory Limit: 65536K
    Total Submissions: 14568   Accepted: 5510

    Description

    Stan has n sticks of various length. He throws them one at a time on the floor in a random way. After finishing throwing, Stan tries to find the top sticks, that is these sticks such that there is no stick on top of them. Stan has noticed that the last thrown stick is always on top but he wants to know all the sticks that are on top. Stan sticks are very, very thin such that their thickness can be neglected.

    Input

    Input consists of a number of cases. The data for each case start with 1 <= n <= 100000, the number of sticks for this case. The following n lines contain four numbers each, these numbers are the planar coordinates of the endpoints of one stick. The sticks are listed in the order in which Stan has thrown them. You may assume that there are no more than 1000 top sticks. The input is ended by the case with n=0. This case should not be processed.

    Output

    For each input case, print one line of output listing the top sticks in the format given in the sample. The top sticks should be listed in order in which they were thrown. 

    The picture to the right below illustrates the first case from input.

    Sample Input

    5
    1 1 4 2
    2 3 3 1
    1 -2.0 8 4
    1 4 8 2
    3 3 6 -2.0
    3
    0 0 1 1
    1 0 2 1
    2 0 3 1
    0
    

    Sample Output

    Top sticks: 2, 4, 5.
    Top sticks: 1, 2, 3.
    

    Hint

    Huge input,scanf is recommended.

    Source

    1. 按顺序随机扔木棒,后扔的木棒才可以在之前的木棒的上面,所以用线段相交去和之后的木棒判断相交,如果相交,则在下面,否则就在上面
    2.  1 #include<iostream>
       2 #include<algorithm>
       3 #include<cstdio>
       4 #include<cstdlib>
       5 using namespace std;
       6 const int MAX = 100000;
       7 typedef struct point {
       8     double x;
       9     double y;
      10     point() {
      11 
      12     }
      13     point(double a, double b) {
      14         x = a;
      15         y = b;
      16     }
      17 }point;
      18 typedef struct edge {
      19     point start;
      20     point end;
      21     edge() {
      22 
      23     }
      24     edge(point a, point b) {
      25         start = a;
      26         end = b;
      27     }
      28 }edge;
      29 edge line[MAX], tmp;
      30 point p;
      31 int n;
      32 double x, y, x2, y2;
      33 inline double max(double a, double b) { return a > b ? a : b; }
      34 inline double min(double a, double b) { return a < b ? a : b; }
      35 double multi(point p1, point p2, point p0) {
      36     return (p2.y - p0.y)*(p1.x - p0.x) - (p2.x - p0.x)*(p1.y - p0.y);
      37 }
      38 bool Across(edge v1, edge v2) {
      39     if (max(v1.start.x, v1.end.x) >= min(v2.start.x, v2.end.x) &&
      40         max(v2.start.x, v2.end.x) >= min(v1.start.x, v1.end.x) &&
      41         max(v1.start.y, v1.end.y) >= min(v2.start.y, v2.end.y) &&
      42         max(v2.start.y, v2.end.y) >= min(v1.start.y, v1.end.y) &&
      43         multi(v1.start, v2.end, v2.start)*multi(v2.end, v1.end, v2.start) > 0 &&
      44         multi(v2.start, v1.end, v1.start)*multi(v1.end, v2.end, v1.start) > 0
      45         )
      46         return true;
      47     return false;
      48 }
      49 int main(void) {
      50     while (~scanf("%d", &n) && n) {
      51         for (int i = 0; i < n; i++) {
      52             scanf("%lf%lf%lf%lf", &x, &y, &x2, &y2);
      53             line[i] = edge(point(x, y), point(x2, y2));
      54         }
      55         printf("Top sticks:");
      56         for (int i = 0; i < n-1; i++) {        //最后一根木棒必定在上面
      57             tmp = line[i];
      58             int flag = 0;
      59             for (int j = i + 1; j < n; j++) {
      60                 if (Across(tmp, line[j]))    //和之后的木块相交,一定在下面
      61                 {
      62                     flag = 1;
      63                     break;
      64                 }
      65             }
      66             if (flag != 1) {
      67                 printf(" %d,", i + 1);
      68             }
      69         }
      70         printf(" %d.
      ", n);
      71     }
      72     return 0;
      73 }
      View Code
  • 相关阅读:
    第十六周 项目一-平方根中的异常
    LeetCode之小孩分糖果
    C#中怎样将List&lt;自己定义&gt;转为Json格式 及相关函数-DataContractJsonSerializer
    (016)给定一个有序数组(递增),敲代码构建一棵具有最小高度的二叉树(keep it up)
    物化视图
    FZU2171:防守阵地 II(线段树)
    鸡尾酒排序
    Android BlueDroid(三):BlueDroid蓝牙开启过程enable
    CF Codeforces Round #256 (Div. 2) D (448D) Multiplication Table
    window.open()具体解释及浏览器兼容性问题
  • 原文地址:https://www.cnblogs.com/FlyerBird/p/9293557.html
Copyright © 2011-2022 走看看