結果

問題 No.2331 Maximum Quadrilateral
ユーザー keisuke6keisuke6
提出日時 2023-05-28 14:52:29
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,336 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 204,424 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-27 03:21:54
合計ジャッジ時間 12,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
5,248 KB
testcase_01 AC 280 ms
5,248 KB
testcase_02 AC 338 ms
5,248 KB
testcase_03 AC 343 ms
5,248 KB
testcase_04 AC 436 ms
5,248 KB
testcase_05 AC 465 ms
5,248 KB
testcase_06 AC 445 ms
5,248 KB
testcase_07 AC 394 ms
5,248 KB
testcase_08 AC 281 ms
5,248 KB
testcase_09 AC 251 ms
5,248 KB
testcase_10 AC 232 ms
5,248 KB
testcase_11 AC 238 ms
5,248 KB
testcase_12 AC 222 ms
5,248 KB
testcase_13 AC 235 ms
5,248 KB
testcase_14 AC 464 ms
5,248 KB
testcase_15 AC 38 ms
5,248 KB
testcase_16 AC 164 ms
5,248 KB
testcase_17 AC 12 ms
5,248 KB
testcase_18 AC 47 ms
5,248 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 520 ms
5,248 KB
testcase_21 AC 547 ms
5,248 KB
testcase_22 AC 525 ms
5,248 KB
testcase_23 AC 537 ms
5,248 KB
testcase_24 AC 523 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 WA -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 2 ms
5,248 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
  	ans = max(ans,a+b);
  }
  cout<<ans<<endl;
}
0