結果
問題 | No.245 貫け! |
ユーザー | 482ET |
提出日時 | 2018-06-11 20:18:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,261 bytes |
コンパイル時間 | 1,385 ms |
コンパイル使用メモリ | 165,680 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 13:42:33 |
合計ジャッジ時間 | 2,339 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 8 ms
6,944 KB |
testcase_12 | AC | 19 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 19 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) #define X real() #define Y imag() using namespace std; using P = complex<double>; using L = pair<P,P>; const double EPS=1e-9; // 内積 dot(a,b) = |a||b|cosθ double dot(P a, P b) { return (conj(a)*b).X; } // 外積 cross(a,b) = |a||b|sinθ double cross(P a, P b) { return (conj(a)*b).Y; } // 点の進行方向 int ccw(P a, P b, P c) { b -= a; c -= a; if (cross(b,c) > EPS) return +1; // counter clockwise if (cross(b,c) < -EPS) return -1; // clockwise if (dot(b,c) < -EPS) return +2; // c--a--b on line if (norm(b) < norm(c)) return -2; // a--b--c on line or a==b return 0; // a--c--b on line or a==c or b==c } // 直線と線分 bool isecLS(P a1, P a2, P b1, P b2) { return cross(a2-a1, b1-a1) * cross(a2-a1, b2-a1) < EPS; } int main(void){ int max=1; int n; int a,b,c,d; cin>>n; vector<L> l(n); rep(i,n){ cin>>a>>b>>c>>d; l[i]=L(P(a,b),P(c,d)); } rep(i,n){ rep(j,n){ if(i==j)continue; int tmp=0; rep(k,n){ if(isecLS(l[i].first,l[j].first,l[k].first,l[k].second)){ tmp++; } } if(max<tmp){ max=tmp; //cout<<i<<" "<<j<<" "<<endl; } tmp=0; rep(k,n){ if(isecLS(l[i].first,l[j].second,l[k].first,l[k].second)){ tmp++; } } if(max<tmp){ max=tmp; //cout<<i<<" "<<j<<" "<<endl; } tmp=0; rep(k,n){ if(isecLS(l[i].second,l[j].second,l[k].first,l[k].second)){ tmp++; } } if(max<tmp){ max=tmp; //cout<<i<<" "<<j<<" "<<endl; } tmp=0; rep(k,n){ if(isecLS(l[i].second,l[j].first,l[k].first,l[k].second)){ tmp++; } } if(max<tmp){ max=tmp; //cout<<i<<" "<<j<<" "<<endl; } } } cout<<max<<endl; }