結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-08 15:36:56
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 1,005 bytes
コンパイル時間 3,095 ms
コンパイル使用メモリ 250,200 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 15:37:01
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(long long i = 0; i < n; i++)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;

int main() {
    vector<pair<int, int>> xy(3);
    rep(i, 3) {
        cin >> xy[i].first >> xy[i].second;
    }
    auto dist = [](int x1, int y1, int x2, int y2) {
        return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
    };
    auto right = [](int x1, int y1, int x2, int y2) {
        return x1 * x2 + y1 * y2 == 0;
    };
    vector<int> id = {0, 1, 2};
    do {
        auto [x1, y1] = xy[id[0]];
        auto [x2, y2] = xy[id[1]];
        auto [x3, y3] = xy[id[2]];
        if (dist(x1, y1, x2, y2) == dist(x2, y2, x3, y3) && right(x1 - x2, y1 - y2, x3 - x2, y3 - y2)) {
            int x4 = x3 + (x1 - x2);
            int y4 = y3 + (y1 - y2);
            cout << x4 << " " << y4 << endl;
            return 0;
        }
    } while (next_permutation(ALL(id)));
    cout << -1 << endl;
}
0