結果

問題 No.2331 Maximum Quadrilateral
ユーザー dyktr_06dyktr_06
提出日時 2023-05-09 23:28:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 2,839 ms
コンパイル使用メモリ 202,388 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 18:28:42
合計ジャッジ時間 6,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
5,248 KB
testcase_01 AC 92 ms
5,376 KB
testcase_02 AC 110 ms
5,376 KB
testcase_03 AC 112 ms
5,376 KB
testcase_04 AC 142 ms
5,376 KB
testcase_05 AC 152 ms
5,376 KB
testcase_06 AC 142 ms
5,376 KB
testcase_07 AC 127 ms
5,376 KB
testcase_08 AC 89 ms
5,376 KB
testcase_09 AC 82 ms
5,376 KB
testcase_10 AC 76 ms
5,376 KB
testcase_11 AC 81 ms
5,376 KB
testcase_12 AC 75 ms
5,376 KB
testcase_13 AC 78 ms
5,376 KB
testcase_14 AC 154 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 54 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 173 ms
5,376 KB
testcase_21 AC 172 ms
5,376 KB
testcase_22 AC 169 ms
5,376 KB
testcase_23 AC 170 ms
5,376 KB
testcase_24 AC 170 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 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 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 2 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 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 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;

// x2
int triangle_area(int x1, int y1, int x2, int y2, int x3, int y3){
    return abs((x1 - x3) * (y2 - y3) - (x2 - x3) * (y1 - y3));
}

int 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++){
            int a = (y[j] - y[i]), b = (x[i] - x[j]), c = (y[i] - y[j]) * x[i] + (x[j] - x[i]) * y[i];
            int mx1 = -1, mx2 = -1;
            int idx1 = -1, idx2 = -1;
            for(int k = 0; k < n; k++){
                if(k == i || k == j) continue;
                int len = a * x[k] + b * y[k] + c;
                if(len > 0){
                    if(mx1 < abs(len)){
                        mx1 = abs(len), idx1 = k;
                    }
                }else{
                    if(mx2 < abs(len)){
                        mx2 = abs(len), idx2 = k;
                    }
                }
            }
            if(mx1 == -1 || mx2 == -1) continue;
            int res = triangle_area(x[i], y[i], x[j], y[j], x[idx1], y[idx1]) + triangle_area(x[i], y[i], x[j], y[j], x[idx2], y[idx2]);
            ans = max(ans, res);
        }
    }
    cout << ans << "\n";
}
0