結果

問題 No.622 点と三角柱の内外判定
ユーザー merom686merom686
提出日時 2017-12-22 00:27:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,046 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 02:47:05
合計ジャッジ時間 1,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 2 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;

struct P {
    double inner(const P& p) const {
        double t = 0;
        for (int i = 0; i < 3; i++) {
            t += x[i] * p.x[i];
        }
        return t;
    }
    P& operator-=(const P& p) {
        for (int i = 0; i < 3; i++) {
            x[i] -= p.x[i];
        }
        return *this;
    }
    double x[3];
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    P p[4];
    for (int i = 0; i < 4; i++) {
        cin >> p[i].x[0] >> p[i].x[1] >> p[i].x[2];
    }

    for (int i = 0; i < 4; i++) {
        if (i != 2) p[i] -= p[2];
    }
    p[2] -= p[2];

    double r[2], s[2];
    for (int i = 0; i < 2; i++) {
        double t0 = p[i].inner(p[i]);
        double t1 = p[i].inner(p[3]);
        r[i] = sqrt(t0);
        s[i] = t1 / r[i];
    }

    cout << ((s[0] / r[0] + s[1] / r[1] < 1 && s[0] > 0 && s[1] > 0) ? "YES" : "NO") << endl;

    return 0;
}
0