結果
問題 | No.245 貫け! |
ユーザー | koyopro |
提出日時 | 2020-01-02 22:01:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,661 bytes |
コンパイル時間 | 1,842 ms |
コンパイル使用メモリ | 162,584 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-02 06:45:14 |
合計ジャッジ時間 | 2,858 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,944 KB |
testcase_12 | AC | 9 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 10 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define int long long #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--) #define REP(i, n) for(int i=0; i<(n); i++) #define RREP(i, n) for(int i=(n-1); i>=0; i--) #define ALL(a) (a).begin(),(a).end() #define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end()); #define CONTAIN(a, b) find(ALL(a), (b)) != (a).end() #define array2(type, x, y) array<array<type, y>, x> #define vector2(type) vector<vector<type> > #define out(...) printf(__VA_ARGS__) int dxy[] = {0, 1, 0, -1, 0}; /*================================*/ int N,M,L; struct Pos { int x, y; }; signed main() { #if DEBUG std::ifstream in("input.txt"); std::cin.rdbuf(in.rdbuf()); #endif cin>>N; vector<pair<Pos, Pos>> L(N); REP(i,N) { cin >> L[i].first.x >> L[i].first.y >> L[i].second.x >> L[i].second.y; } int ans = 0; REP(i,2*N) REP(j,2*N){ if (i==j) continue; auto p1 = (i%2) ? L[i/2].first : L[i/2].second; auto p2 = (j%2) ? L[j/2].first : L[j/2].second; int a = p1.x - p2.x; int b = p1.y - p2.y; /* tc=(x1-x2)*(y3-y1)+(y1-y2)*(x1-x3) td=(x1-x2)*(y4-y1)+(y1-y2)*(x1-x4) tc*td<=0 */ int cnt = 0; for (auto l : L) { auto p3 = l.first; auto p4 = l.second; int tc = a * (p3.y - p1.y) + b * (p1.x - p3.x); int td = a * (p4.y - p1.y) + b * (p1.x - p4.x); if (tc * td <= 0) cnt++; } ans = max(ans, cnt); } cout << ans << endl; return 0; }