結果

問題 No.2331 Maximum Quadrilateral
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-26 18:46:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2024-10-26 18:46:37
合計ジャッジ時間 16,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 663 ms
75,780 KB
testcase_01 AC 432 ms
75,552 KB
testcase_02 AC 504 ms
75,464 KB
testcase_03 AC 715 ms
75,520 KB
testcase_04 AC 581 ms
75,632 KB
testcase_05 AC 638 ms
75,516 KB
testcase_06 AC 613 ms
75,456 KB
testcase_07 AC 638 ms
75,600 KB
testcase_08 AC 459 ms
75,952 KB
testcase_09 AC 410 ms
75,696 KB
testcase_10 AC 429 ms
76,392 KB
testcase_11 AC 371 ms
75,756 KB
testcase_12 AC 349 ms
75,672 KB
testcase_13 AC 389 ms
75,668 KB
testcase_14 AC 645 ms
75,704 KB
testcase_15 AC 107 ms
75,668 KB
testcase_16 AC 288 ms
75,484 KB
testcase_17 AC 72 ms
75,788 KB
testcase_18 AC 118 ms
75,844 KB
testcase_19 AC 78 ms
75,284 KB
testcase_20 AC 685 ms
75,372 KB
testcase_21 AC 709 ms
75,700 KB
testcase_22 AC 756 ms
75,448 KB
testcase_23 AC 690 ms
75,704 KB
testcase_24 AC 712 ms
75,576 KB
testcase_25 AC 37 ms
52,492 KB
testcase_26 AC 37 ms
53,492 KB
testcase_27 AC 37 ms
52,804 KB
testcase_28 AC 36 ms
52,896 KB
testcase_29 AC 37 ms
52,612 KB
testcase_30 AC 37 ms
52,464 KB
testcase_31 AC 36 ms
52,812 KB
testcase_32 AC 37 ms
52,336 KB
testcase_33 AC 37 ms
52,348 KB
testcase_34 AC 38 ms
52,800 KB
testcase_35 AC 36 ms
53,136 KB
testcase_36 AC 37 ms
52,560 KB
testcase_37 AC 35 ms
52,552 KB
testcase_38 AC 35 ms
53,556 KB
testcase_39 AC 45 ms
52,828 KB
testcase_40 AC 35 ms
52,868 KB
testcase_41 AC 36 ms
52,244 KB
testcase_42 AC 37 ms
52,888 KB
testcase_43 AC 36 ms
53,084 KB
testcase_44 AC 36 ms
53,148 KB
testcase_45 AC 36 ms
52,668 KB
testcase_46 AC 36 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2331


def main():
    N = int(input())
    xy = []
    for _ in range(N):
        x, y = map(int, input().split())
        xy.append((x , y))
    
    answer = 0
    for i in range(N):
        for j in range(i + 1, N):
            x0,y0 = xy[i]
            x1,y1 = xy[j]

            v0_x = x1 - x0
            v0_y = y1 - y0

            p_max = -1
            p_min = -1
            for k in range(N):
                w0_x = xy[k][0] - x0
                w0_y = xy[k][1] - y0

                d = (v0_x * w0_y - v0_y * w0_x)
                if d > 0:
                    p_max = max(p_max, d)
                elif d < 0:
                    p_min = max(p_min, abs(d))

            if p_max > 0 and p_min > 0:
                ans = p_min + p_max
                answer = max(ans, answer)
    print(answer)







if __name__ == "__main__":
    main()
0