zoukankan      html  css  js  c++  java
  • FZOJ Problem 2148 Moon Game

                                                                                                  Problem 2148 Moon Game

    Problem Description

    Fat brother and Maze are playing a kind of special (hentai) game in the clearly blue sky which we can just consider as a kind of two-dimensional plane. Then Fat brother starts to draw N starts in the sky which we can just consider each as a point. After he draws these stars, he starts to sing the famous song “The Moon Represents My Heart” to Maze.

    You ask me how deeply I love you,

    How much I love you?

    My heart is true,

    My love is true,

    The moon represents my heart.

    But as Fat brother is a little bit stay-adorable(呆萌), he just consider that the moon is a special kind of convex quadrilateral and starts to count the number of different convex quadrilateral in the sky. As this number is quiet large, he asks for your help.

    Input

    The first line of the date is an integer T, which is the number of the text cases.

    Then T cases follow, each case contains an integer N describe the number of the points.

    Then N lines follow, Each line contains two integers describe the coordinate of the point, you can assume that no two points lie in a same coordinate and no three points lie in a same line. The coordinate of the point is in the range[-10086,10086].

    1 <= T <=100, 1 <= N <= 30

    Output

    For each case, output the case number first, and then output the number of different convex quadrilateral in the sky. Two convex quadrilaterals are considered different if they lie in the different position in the sky.

    Sample Input

    2 4 0 0 100 0 0 100 100 100 4 0 0 100 0 0 100 10 10

    Sample Output

    Case 1: 1 Case 2: 0
     
    题意:在坐标图上标记好n个点,现在由这n个点中任意的四个组成四边形,穷尽所有的可能,问n个点总共能产生多少个凸四边形。
    思路:假定取出了一个四边形,用四边形的四个顶点组成三角形,一共可以组成4个三角形,如果是凹四边形,则一定存在其中一个三角形的面积是其余三个三角形的面积之和。
    已知三角形的三个顶点的坐标,由行列式
                                                      |1     1    1   |        计算可得三角形的面积。
                                                      |x1    x2  x3   |*1/2
                                                      |y1    y2    y3  |
     
    AC代码:
    #define _CRT_SECURE_NO_DEPRECATE
    #include<iostream>
    #include<algorithm>
    #include<string>
    #include<cmath>
    #include<queue>
    #include<set>
    #include<map>
    using namespace std;
    typedef long long ll;
    const int N_MAX = 30+ 5;
    int n;
    pair<ll, ll>cor[N_MAX];
    
    ll fab(ll a) {
        return a >= 0 ? a : -a;
    }
    
    int S(int a,int b,int c) {
        return fab(cor[a].first*(cor[b].second-cor[c].second)+cor[b].first*(cor[c].second-cor[a].second)+cor[c].first*(cor[a].second-cor[b].second)) ;
    }
    
    bool judge(int a,int b,int c,int d) {
        if (S(a, b, c) == S(a, b, d) + S(a, c, d) + S(b, c, d))
            return false;//凹四边形
        return true;
    }
    
    
    int main() {
        int T;
        scanf("%d", &T);
        int cs = 0;
        while (T--) {
            cs++;
            scanf("%d",&n);
            for (int i = 0; i < n;i++) {
                scanf("%lld%lld",&cor[i].first,&cor[i].second);
            }
            int num = 0;
            for (int i = 0; i < n;i++) 
            for (int j = i + 1; j < n;j++) 
            for (int k = j + 1; k < n;k++) 
            for (int l = k + 1; l < n; l++) 
                if (judge(i, j, k, l) &&judge(j,i,l,k)&&judge(k,l,i,j)&&judge(l,k,j,i) ) {
                    num++;
            }
    
            printf("Case %d: %d
    ",cs,num);
        }
        return 0;
    }
  • 相关阅读:
    “工业4.0”下的可视化工厂建设方案
    logstash 发送慢页面到zabbix告警
    windows 挂载linux nfs
    zabbix报警把特定的应用集发送给developer
    logstash 判断接口响应时间发送zabbix告警
    zabbix 对于logstash告警连续发邮件
    zabbix 发送邮件配置
    zabbix如何选择适合的监控类型(107)
    logstash 发送zabbix告警
    zabbix 添加自定义key
  • 原文地址:https://www.cnblogs.com/ZefengYao/p/6838547.html
Copyright © 2011-2022 走看看