結果
問題 | No.1041 直線大学 |
ユーザー |
![]() |
提出日時 | 2020-06-03 10:58:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 867 bytes |
コンパイル時間 | 823 ms |
コンパイル使用メモリ | 93,612 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 08:04:17 |
合計ジャッジ時間 | 1,817 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 37 |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <queue> #include <deque> #include <map> #include <set> #include <cmath> #include <iomanip> #include <cassert> #define rep(i, n) for(int i = 0; i < (int)(n); ++i) using namespace std; using lint = int64_t; struct point {int x; int y;}; bool judge(point a, point b, point c) {return (a.x - b.x) * (c.y - a.y) - (a.y - b.y) * (c.x - a.x) == 0;} int main() { int N; cin >> N; vector<point> P(N); rep(i, N) { int X, Y; cin >> X >> Y; P[i] = point{X, Y}; } int ans = 0; rep(i, N) rep(j, N) { if (i == j) continue; int res = 0; rep(k, N) { if (judge(P[i], P[j], P[k])) ++res; } ans = max(ans, res); } cout << ans << "\n"; return 0; }