結果

問題 No.2331 Maximum Quadrilateral
ユーザー mkawa2mkawa2
提出日時 2023-05-29 14:30:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,085 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-12-28 09:52:29
合計ジャッジ時間 9,619 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
66,432 KB
testcase_01 AC 222 ms
65,024 KB
testcase_02 AC 399 ms
65,152 KB
testcase_03 AC 260 ms
65,536 KB
testcase_04 AC 315 ms
65,664 KB
testcase_05 AC 327 ms
66,048 KB
testcase_06 AC 321 ms
65,920 KB
testcase_07 AC 289 ms
65,792 KB
testcase_08 AC 218 ms
64,896 KB
testcase_09 AC 208 ms
64,640 KB
testcase_10 AC 192 ms
65,024 KB
testcase_11 AC 205 ms
64,512 KB
testcase_12 AC 197 ms
65,152 KB
testcase_13 AC 206 ms
64,896 KB
testcase_14 AC 342 ms
65,792 KB
testcase_15 AC 73 ms
62,592 KB
testcase_16 AC 151 ms
64,128 KB
testcase_17 AC 60 ms
63,360 KB
testcase_18 AC 79 ms
62,720 KB
testcase_19 AC 61 ms
62,208 KB
testcase_20 AC 370 ms
65,664 KB
testcase_21 AC 370 ms
66,048 KB
testcase_22 AC 366 ms
66,048 KB
testcase_23 AC 370 ms
66,048 KB
testcase_24 AC 372 ms
66,176 KB
testcase_25 AC 39 ms
52,480 KB
testcase_26 AC 40 ms
52,992 KB
testcase_27 AC 40 ms
52,480 KB
testcase_28 AC 40 ms
52,224 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 WA -
testcase_31 AC 41 ms
52,480 KB
testcase_32 AC 39 ms
52,608 KB
testcase_33 AC 40 ms
52,224 KB
testcase_34 AC 40 ms
52,736 KB
testcase_35 AC 40 ms
52,480 KB
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 41 ms
52,608 KB
testcase_38 AC 42 ms
52,480 KB
testcase_39 AC 41 ms
52,096 KB
testcase_40 AC 40 ms
52,480 KB
testcase_41 AC 40 ms
52,480 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 42 ms
52,352 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

def outer(s,t,p,q,x,y):
    a=p-s
    b=q-t
    c=x-s
    d=y-t
    return a*d-b*c

n=II()
xy=LLI(n)

ans=0
for i,(s,t) in enumerate(xy):
    for p,q in xy[:i]:
        mn,mx=inf,-inf
        for x,y in xy:
            cur=outer(s,t,p,q,x,y)
            if cur<mn:mn=cur
            if cur>mx:mx=cur
        if mx-mn>ans:ans=mx-mn

print(ans)
0