結果
問題 | No.622 点と三角柱の内外判定 |
ユーザー | te-sh |
提出日時 | 2017-12-22 01:09:00 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,290 bytes |
コンパイル時間 | 768 ms |
コンパイル使用メモリ | 107,252 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 23:14:33 |
合計ジャッジ時間 | 1,656 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; alias point = Point3!long; void main() { auto p = new point[](4); foreach (i; 0..4) { auto rd = readln.split.to!(int[]), x = rd[0], y = rd[1], z = rd[2]; p[i] = point(x, y, z); } foreach (i; 0..3) p[i] = p[i] - p[3]; auto v = [outerProd(p[0], p[1]), outerProd(p[1], p[2]), outerProd(p[2], p[0])]; auto u = outerProd(p[1]-p[0], p[2]-p[0]); auto ip = v.map!(vi => vi * u).array; writeln(ip.count!"a<0" && ip.count!"a>0" ? "NO" : "YES"); } struct Point3(T) { T x, y, z; pure auto opBinary(string op: "+")(Point3!T rhs) const { return Point3!T(x + rhs.x, y + rhs.y, z + rhs.z); } pure auto opBinary(string op: "-")(Point3!T rhs) const { return Point3!T(x - rhs.x, y - rhs.y, z - rhs.z); } pure auto opBinary(string op: "*")(Point3!T rhs) const { return x * rhs.x + y * rhs.y + z * rhs.z; } pure auto opBinary(string op: "*")(T a) const { return Point3!T(x * a, y * a, z * a); } pure auto opBinary(string op: "/")(T a) const { return Point3!T(x / a, y / a, z / a); } pure auto hypot2() const { return x ^^ 2 + y ^^ 2 + z ^^ 2; } } pure auto outerProd(T)(Point3!T p1, Point3!T p2) { return Point3!T(p1.y * p2.z - p1.z * p2.y, p1.z * p2.x - p1.x * p2.z, p1.x * p2.y - p1.y * p2.x); }