結果
問題 | No.132 点と平面との距離 |
ユーザー | LayCurse |
提出日時 | 2014-11-13 15:02:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 936 bytes |
コンパイル時間 | 1,101 ms |
コンパイル使用メモリ | 159,848 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 02:39:49 |
合計ジャッジ時間 | 1,517 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 11 ms
5,376 KB |
testcase_02 | AC | 35 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:18:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%lf%lf%lf",&dx,&dy,&dz); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:19:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | rep(i,N) scanf("%lf%lf%lf",X+i,Y+i,Z+i), X[i]-=dx, Y[i]-=dy, Z[i]-=dz; | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) int N; double X[301], Y[301], Z[301]; double dist[301][301]; int main(){ int i, a, b, c; double dx, dy, dz; double d1, d2, d3, ss, s, v; double res; scanf("%d",&N); scanf("%lf%lf%lf",&dx,&dy,&dz); rep(i,N) scanf("%lf%lf%lf",X+i,Y+i,Z+i), X[i]-=dx, Y[i]-=dy, Z[i]-=dz; rep(a,N) REP(b,a+1,N) dist[a][b] = dist[b][a] = sqrt( (X[a]-X[b])*(X[a]-X[b]) + (Y[a]-Y[b])*(Y[a]-Y[b]) + (Z[a]-Z[b])*(Z[a]-Z[b]) ); res = 0; rep(a,N) REP(b,a+1,N) REP(c,b+1,N){ d1 = dist[a][b]; d2 = dist[b][c]; d3 = dist[c][a]; ss = (d1+d2+d3) / 2; s = sqrt(ss*(ss-d1)*(ss-d2)*(ss-d3)); v = (X[a]*Y[b]*Z[c] + X[b]*Y[c]*Z[a] + X[c]*Y[a]*Z[b] - X[c]*Y[b]*Z[a] - X[b]*Y[a]*Z[c] - X[a]*Y[c]*Z[b]) / 2; res += max(v, -v) / s; } printf("%.15f\n", res); return 0; }