結果

問題 No.2012 Largest Triangle
ユーザー とりゐとりゐ
提出日時 2022-07-15 21:48:12
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 824 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,500 KB
最終ジャッジ日時 2024-06-27 21:19:18
合計ジャッジ時間 25,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,728 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 40 ms
53,120 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 38 ms
52,608 KB
testcase_16 AC 721 ms
89,732 KB
testcase_17 AC 728 ms
89,988 KB
testcase_18 AC 700 ms
89,608 KB
testcase_19 AC 718 ms
89,864 KB
testcase_20 AC 724 ms
90,112 KB
testcase_21 AC 734 ms
89,988 KB
testcase_22 AC 719 ms
89,092 KB
testcase_23 AC 728 ms
89,956 KB
testcase_24 AC 725 ms
89,992 KB
testcase_25 AC 730 ms
90,112 KB
testcase_26 AC 1,673 ms
89,988 KB
testcase_27 AC 1,451 ms
90,376 KB
testcase_28 AC 1,626 ms
89,988 KB
testcase_29 AC 1,590 ms
90,372 KB
testcase_30 AC 1,626 ms
90,368 KB
testcase_31 AC 724 ms
89,732 KB
testcase_32 AC 730 ms
90,500 KB
testcase_33 AC 737 ms
89,732 KB
testcase_34 AC 731 ms
89,600 KB
testcase_35 AC 725 ms
89,736 KB
testcase_36 AC 68 ms
68,736 KB
testcase_37 AC 68 ms
68,608 KB
testcase_38 AC 70 ms
68,736 KB
testcase_39 AC 67 ms
68,480 KB
testcase_40 AC 65 ms
68,608 KB
testcase_41 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def cross3(a, b, c):
    return (b[0]-a[0])*(c[1]-a[1]) - (b[1]-a[1])*(c[0]-a[0])

# ps = [(x, y), ...]: ソートされた座標list
def convex_hull(ps):
    qs = []
    N = len(ps)
    for p in ps:
        # 一直線上で高々2点にする場合は ">=" にする
        while len(qs) > 1 and cross3(qs[-1], qs[-2], p) >= 0:
            qs.pop()
        qs.append(p)
    t = len(qs)
    for i in range(N-2, -1, -1):
        p = ps[i]
        while len(qs) > t and cross3(qs[-1], qs[-2], p) > 0:
            qs.pop()
        qs.append(p)
    return qs

n=int(input())
xy=[]
for i in range(n):
  x,y=map(int,input().split())
  xy.append((x,y))

xy.sort()
xy=convex_hull(xy)
m=len(xy)

ans=0
for i in range(m):
  for j in range(i+1,m):
    xi,yi=xy[i]
    xj,yj=xy[j]
    s=abs(xi*yj-xj*yi)
    ans=max(ans,s)

print(ans)
0