結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
65,792 KB
testcase_01 AC 213 ms
65,280 KB
testcase_02 AC 370 ms
65,408 KB
testcase_03 AC 248 ms
65,280 KB
testcase_04 AC 300 ms
65,024 KB
testcase_05 AC 309 ms
65,664 KB
testcase_06 AC 302 ms
66,176 KB
testcase_07 AC 275 ms
65,280 KB
testcase_08 AC 211 ms
64,640 KB
testcase_09 AC 199 ms
65,024 KB
testcase_10 AC 179 ms
64,768 KB
testcase_11 AC 190 ms
64,256 KB
testcase_12 AC 182 ms
64,768 KB
testcase_13 AC 197 ms
64,512 KB
testcase_14 AC 329 ms
65,024 KB
testcase_15 AC 68 ms
62,464 KB
testcase_16 AC 142 ms
64,512 KB
testcase_17 AC 55 ms
62,848 KB
testcase_18 AC 76 ms
62,336 KB
testcase_19 AC 55 ms
62,336 KB
testcase_20 AC 349 ms
65,792 KB
testcase_21 AC 355 ms
66,176 KB
testcase_22 AC 342 ms
66,176 KB
testcase_23 AC 364 ms
65,792 KB
testcase_24 AC 353 ms
66,432 KB
testcase_25 AC 37 ms
52,224 KB
testcase_26 AC 36 ms
52,480 KB
testcase_27 AC 37 ms
52,352 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 39 ms
51,840 KB
testcase_30 WA -
testcase_31 AC 37 ms
52,096 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 37 ms
52,224 KB
testcase_35 AC 37 ms
52,096 KB
testcase_36 AC 38 ms
52,352 KB
testcase_37 AC 36 ms
51,840 KB
testcase_38 AC 38 ms
52,480 KB
testcase_39 AC 37 ms
51,968 KB
testcase_40 AC 37 ms
52,096 KB
testcase_41 AC 37 ms
52,096 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 38 ms
52,096 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