結果
問題 | No.622 点と三角柱の内外判定 |
ユーザー |
|
提出日時 | 2017-12-23 00:15:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 45 ms / 1,500 ms |
コード長 | 1,851 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 53,248 KB |
最終ジャッジ日時 | 2024-12-17 23:53:40 |
合計ジャッジ時間 | 2,530 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 32 |
ソースコード
#!/usr/bin/env pythondef dot(A, B):return A[0]*B[0] + A[1]*B[1] + A[2]*B[2]def cross(A, B):X = A[1]*B[2] - A[2]*B[1]Y = A[2]*B[0] - A[0]*B[2]Z = A[0]*B[1] - A[1]*B[0]return [X, Y, Z]def inverse(A):det = A[0][0]*A[1][1]*A[2][2] + A[0][1]*A[1][2]*A[2][0]det += A[0][2]*A[1][0]*A[2][1] - A[0][0]*A[1][2]*A[2][1]det += - A[0][2]*A[1][1]*A[2][0] - A[0][1]*A[1][0]*A[2][2]A11 = (-1)**2 * (A[1][1]*A[2][2] - A[1][2]*A[2][1]) / detA12 = (-1)**3 * (A[1][0]*A[2][2] - A[1][2]*A[2][0]) / detA13 = (-1)**4 * (A[1][0]*A[2][1] - A[1][1]*A[2][0]) / detA21 = (-1)**3 * (A[0][1]*A[2][2] - A[0][2]*A[2][1]) / detA22 = (-1)**4 * (A[0][0]*A[2][2] - A[0][2]*A[2][0]) / detA23 = (-1)**5 * (A[0][0]*A[2][1] - A[0][1]*A[2][0]) / detA31 = (-1)**4 * (A[0][1]*A[1][2] - A[0][2]*A[1][1]) / detA32 = (-1)**5 * (A[0][0]*A[1][2] - A[0][2]*A[1][0]) / detA33 = (-1)**6 * (A[0][0]*A[1][1] - A[0][1]*A[1][0]) / detreturn [[A11, A21, A31], [A12, A22, A32], [A13, A23, A33]]A = [int(x) for x in input().split()]B = [int(x) for x in input().split()]C = [int(x) for x in input().split()]D = [int(x) for x in input().split()]AB = [b - a for (a, b) in zip(A, B)]AC = [c - a for (a, c) in zip(A, C)]AD = [d - a for (a, d) in zip(A, D)]BC = [c - b for (b, c) in zip(B, C)]BA = [-x for x in AB]Z = cross(AB, AC)M = inverse([AB, AC, Z])Co = [AD[0]*x + AD[1]*y + AD[2]*z for (x, y, z) in zip(M[0], M[1], M[2])]if Co[0] > 0 and Co[1] > 0 and Co[0] < 1 and Co[1] < 1:Dp = [Co[0]*b + Co[1]*c + Co[2]*z for (b, c, z) in zip(AB, AC, Z)]Mp = inverse([AB, BC, Z])Cp = [Dp[0]*x + Dp[1]*y + Dp[2]*z for (x, y, z) in zip(Mp[0], Mp[1], Mp[2])]if Cp[0] > 0 and Cp[1] > 0 and Cp[0] < 1 and Cp[1] < 1:print('YES')else:print('NO')else:print('NO')