結果

問題 No.2790 Athena 3
ユーザー Moss_LocalMoss_Local
提出日時 2024-06-21 23:38:03
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 1,290 ms
コンパイル使用メモリ 108,776 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 23:38:06
合計ジャッジ時間 2,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>

using namespace std;

// 三角形の面積を計算する関数
double calculate_area(int x1, int y1, int x2, int y2, int x3, int y3) {
    return abs(x1 * (y2 - y3) + x2 * (y3 - y1) + x3 * (y1 - y2)) / 2.0;
}

int main() {
    int x1, y1, x2, y2, x3, y3;
    cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;

    int operations[4][2] = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
    double max_area = 0;

    for(int i = 0; i < 4; ++i) {
        for(int j = 0; j < 4; ++j) {
            for(int k = 0; k < 4; ++k) {
                int new_x1 = x1 + operations[i][0],
                    new_y1 = y1 + operations[i][1];
                int new_x2 = x2 + operations[j][0],
                    new_y2 = y2 + operations[j][1];
                int new_x3 = x3 + operations[k][0],
                    new_y3 = y3 + operations[k][1];

                double area = calculate_area(new_x1, new_y1, new_x2, new_y2,
                                             new_x3, new_y3);
                max_area = max(max_area, area);
            }
        }
    }

    cout << max_area << endl;
    return 0;
}
0