結果

問題 No.2331 Maximum Quadrilateral
ユーザー keisuke6keisuke6
提出日時 2023-05-28 14:54:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 204,784 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 06:27:05
合計ジャッジ時間 10,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 409 ms
5,248 KB
testcase_01 AC 243 ms
5,376 KB
testcase_02 AC 296 ms
5,376 KB
testcase_03 AC 294 ms
5,376 KB
testcase_04 AC 383 ms
5,376 KB
testcase_05 AC 399 ms
5,376 KB
testcase_06 AC 376 ms
5,376 KB
testcase_07 AC 340 ms
5,376 KB
testcase_08 AC 242 ms
5,376 KB
testcase_09 AC 229 ms
5,376 KB
testcase_10 AC 200 ms
5,376 KB
testcase_11 AC 216 ms
5,376 KB
testcase_12 AC 199 ms
5,376 KB
testcase_13 AC 207 ms
5,376 KB
testcase_14 AC 421 ms
5,376 KB
testcase_15 AC 35 ms
5,376 KB
testcase_16 AC 145 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 44 ms
5,376 KB
testcase_19 AC 14 ms
5,376 KB
testcase_20 AC 464 ms
5,376 KB
testcase_21 AC 463 ms
5,376 KB
testcase_22 AC 450 ms
5,376 KB
testcase_23 AC 462 ms
5,376 KB
testcase_24 AC 466 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
int f(int x1, int y1, int x2, int y2, int x3, int y3) {
    int area = abs((x1*(y2-y3) + x2*(y3-y1) + x3*(y1-y2)));
    return area;
}
bool ff(int x1, int y1, int x2, int y2, int x3, int y3) {
    double epsilon = 1e-9;  // 許容誤差

    // 直線ABの傾きを計算
    double slopeAB = 1.0*(y2 - y1) / (x2 - x1);

    // 直線ABの方程式を用いて、点Cのy座標を予測
    double predictedY = y1 + 1.0 * slopeAB * (x3 - x1);

    // 点Cのy座標と実際のy座標の差を比較して判定
    if (predictedY > y3) {
        return true;  // Cは直線AB上にある
    } else {
        return false; // Cは直線AB上にない
    }
}
signed main(){
  int N;
  cin>>N;
  vector<int> X(N),Y(N);
  for(int i=0;i<N;i++) cin>>X[i]>>Y[i];
  int ans = 0;
  for(int i=0;i<N;i++)for(int j=i+1;j<N;j++){
  	vector<int> A = {}, B = {};
  	for(int k=0;k<N;k++){
  		if(i == k || j == k) continue;
  		if(ff(X[i],Y[i],X[j],Y[j],X[k],Y[k])) A.push_back(f(X[i],Y[i],X[j],Y[j],X[k],Y[k]));
  		else B.push_back(f(X[i],Y[i],X[j],Y[j],X[k],Y[k]));
  	}
  	int a = 0;
  	for(int x:A) a = max(a,x);
  	int b = 0;
  	for(int y:B) b = max(b,y);
  	//cout<<i<<' '<<j<<' '<<a<<' '<<b<<endl;
  	if(a == 0 || b == 0) continue;
  	ans = max(ans,a+b);
  }
  cout<<ans<<endl;
}
0