四点共面51nod 1265

37 篇文章 0 订阅
1 篇文章 0 订阅

分析

四个点组成三个向量,若三个向量混合积为0,则证明向量共面。
abc混合积:https://baike.baidu.com/item/混合积/10564182?fr=aladdin

即为:(a 叉乘 b) 点乘 c == 0

混合积可以用行列式来计算
[a.x a.y a.z]
[b.x b.y b.z]
[c.x c.y c.z]

#include <bits/stdc++.h>
#pragma GCC diagnostic error "-std=c++11"
#define d(x) cout << (x) << endl
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
const int mod = 1e9 + 7;
const int N = 14;

struct point
{
    double x, y, z;
    point(double x, double y, double z):x(x),y(y),z(z){}
    point(){
        scanf("%lf%lf%lf", &x, &y, &z);
    }
};
point operator - (point a, point b)
{
    return point(a.x - b.x, a.y - b.y, a.z - b.z);
}
int solve(point a, point b, point c)
{
    return a.y * b.x * c.z + a.x * c.y * b.z + a.z * b.y * c.x - b.x * c.y * a.z - a.y * b.z * c.x - a.x * b.y * c.z;
}
int main()
{
    int t;
    for(cin >> t; t; t--){
        point a = point();
        point b = point();
        point c = point();
        point d = point();
        point A = b - a;
        point B = c - a;
        point C = d - a;
        if(solve(A, B, C) == 0){
            d("Yes");
        }else{
            d("No");
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值