結果

問題 No.622 点と三角柱の内外判定
ユーザー merom686merom686
提出日時 2017-12-22 01:14:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,290 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 75,508 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 17:06:42
合計ジャッジ時間 2,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,944 KB
testcase_25 WA -
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 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;
    }
    P& operator*=(const double t) {
        for (int i = 0; i < 3; i++) {
            x[i] *= t;
        }
        return *this;
    }
    double x[3];
};

int main() {
    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++) {
    hoge:
        double t0 = p[i].inner(p[i]);
        double t1 = p[i].inner(p[3]);
        r[i] = sqrt(t0);
        s[i] = t1 / r[i];
        if (i == 0 && s[i] == 0) {
            swap(p[0], p[1]);
            goto hoge;
        }
        if (i == 0) p[3] -= (p[0] *= s[0] / r[0]);
    }

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

    return 0;
}
0