結果
問題 | No.245 貫け! |
ユーザー | srjywrdnprkt |
提出日時 | 2022-12-31 05:23:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,286 bytes |
コンパイル時間 | 1,009 ms |
コンパイル使用メモリ | 109,184 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 15:30:54 |
合計ジャッジ時間 | 1,912 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 27 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 27 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <sstream> using namespace std; template <typename T> struct point{ T x, y; }; //judge if line AB intersects line CD template <typename T> bool intersect(point<T> &a, point<T> &b, point<T> &c, point<T> &d){ bool ans = 1; T s, t; s = (a.x - b.x) * (c.y - a.y) - (a.y - b.y) * (c.x - a.x); t = (a.x - b.x) * (d.y - a.y) - (a.y - b.y) * (d.x - a.x); if (s*t > 0) ans = 0; s = (c.x - d.x) * (a.y - c.y) - (c.y - d.y) * (a.x - c.x); t = (c.x - d.x) * (b.y - c.y) - (c.y - d.y) * (b.x - c.x); if (s*t > 0) ans = 0; return ans; } int main(){ long long N, mx=0, M, cnt; cin >> N; vector<point<long long>> c(N), d(N), e(2*N); for (int i=0; i<N; i++){ cin >> c[i].x >> c[i].y >> d[i].x >> d[i].y; e[2*i] = c[i]; e[2*i+1] = d[i]; } for (int i=0; i<N*2; i++){ for (int j=0; j<N*2; j++){ cnt = 0; for (int k=0; k<N; k++){ if (intersect(e[i], e[j], c[k], d[k])) cnt++; } mx = max(mx, cnt); } } cout << mx << endl; return 0; }