Deepest Station

Deepest Station

这里写图片描述
题意:三维空间给两个点,问能否利用两条与地面夹角为45度的扶梯到达。
解法:其实可以利用投影,且45度的话底和高一样长,然后直接算就好。

#include <iostream>
using namespace std;
#include <stdio.h>
#include <math.h>
#include <stdlib.h>

double sqr(double x) {
    return x*x;
}

int main() {
    freopen("deepest.in","r",stdin);
    freopen("deepest.out","w",stdout);

    double x, y, d;
    cin >> x >> y >> d;
    double len = sqrt(x*x+y*y);
    if (fabs(len-d) < 1e-8) {
        cout << "Single staircase" << endl;
    } else if (len - d > 1e-8) {
        cout << "Impossible" << endl;
    } else {
        double s=d-len;  
        double h=sqrt(s*s/2);  
        h=sqrt(h*h/2);
        double z=d-h;
        x=x*z/len;  
        y=y*z/len;  
        printf("%.10lf %.10lf %.10lf\n", x, y, h); 
    }

    fclose(stdin);fclose(stdout);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值