結果
| 問題 |
No.1041 直線大学
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2021-11-22 00:25:50 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 713 bytes |
| コンパイル時間 | 544 ms |
| コンパイル使用メモリ | 69,248 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-16 08:12:35 |
| 合計ジャッジ時間 | 1,571 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 37 |
ソースコード
#include <iostream>
#include <vector>
using namespace std;
int main(){
int n;cin>>n;
vector<pair<int,int>> A(n);
for(int i = 0; n > i; i++){
cin>>A[i].first>>A[i].second;
}
int ans = 2;
for(int i = 0; n > i; i++){
for(int j = i+1; n > j; j++){
int a = 2;
for(int k = j+1; n > k; k++){
if((A[k].first-A[i].first)*(A[j].second-A[i].second) == (A[k].second-A[i].second)*(A[j].first-A[i].first)){
// cout << A[i].first << " " << A[i].second << endl;
// cout << A[j].first << " " << A[j].second << endl;
// cout << A[k].first << " " << A[k].second << endl;
a++;
}
}
ans = max(a,ans);
}
}
cout << ans << endl;
}