結果

問題 No.2331 Maximum Quadrilateral
ユーザー 👑 p-adicp-adic
提出日時 2023-07-17 18:53:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,735 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 349,264 KB
最終ジャッジ日時 2024-09-17 21:35:48
合計ジャッジ時間 30,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,519 ms
318,508 KB
testcase_01 AC 923 ms
223,312 KB
testcase_02 AC 1,112 ms
253,320 KB
testcase_03 AC 1,118 ms
252,992 KB
testcase_04 AC 1,415 ms
304,120 KB
testcase_05 AC 1,685 ms
315,896 KB
testcase_06 AC 1,442 ms
301,696 KB
testcase_07 AC 1,338 ms
278,540 KB
testcase_08 AC 914 ms
219,596 KB
testcase_09 AC 861 ms
209,188 KB
testcase_10 AC 797 ms
197,480 KB
testcase_11 AC 851 ms
206,736 KB
testcase_12 AC 789 ms
196,348 KB
testcase_13 AC 812 ms
204,404 KB
testcase_14 AC 1,593 ms
326,888 KB
testcase_15 AC 182 ms
96,496 KB
testcase_16 AC 567 ms
161,608 KB
testcase_17 AC 92 ms
81,748 KB
testcase_18 AC 210 ms
102,008 KB
testcase_19 AC 112 ms
83,456 KB
testcase_20 AC 1,711 ms
348,868 KB
testcase_21 AC 1,676 ms
348,820 KB
testcase_22 AC 1,735 ms
348,880 KB
testcase_23 AC 1,705 ms
349,220 KB
testcase_24 AC 1,673 ms
349,264 KB
testcase_25 AC 35 ms
52,096 KB
testcase_26 AC 33 ms
52,480 KB
testcase_27 AC 33 ms
52,352 KB
testcase_28 AC 32 ms
52,224 KB
testcase_29 AC 33 ms
52,224 KB
testcase_30 AC 32 ms
52,444 KB
testcase_31 AC 33 ms
52,224 KB
testcase_32 AC 33 ms
52,752 KB
testcase_33 AC 33 ms
52,352 KB
testcase_34 AC 33 ms
52,352 KB
testcase_35 AC 33 ms
52,096 KB
testcase_36 AC 33 ms
52,224 KB
testcase_37 AC 33 ms
52,096 KB
testcase_38 AC 33 ms
52,736 KB
testcase_39 AC 31 ms
52,096 KB
testcase_40 AC 35 ms
51,968 KB
testcase_41 AC 37 ms
52,096 KB
testcase_42 AC 42 ms
52,224 KB
testcase_43 AC 35 ms
52,480 KB
testcase_44 AC 34 ms
51,968 KB
testcase_45 AC 34 ms
52,480 KB
testcase_46 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=int(I())
X=[0]*N
Y=[0]*N
M=R(N)
for i in M:X[i],Y[i]=map(int,I().split())
S=[0]*N*N
for i in M:
	for j in R(i+1,N):S[i*N+j]=[(X[j]-X[i])*(Y[k]-Y[i])-(Y[j]-Y[i])*(X[k]-X[i])for k in M]
F=[[-10**8,-10**8]for v in R(N*N)]
a=0
for i in M:
	for j in R(i+1,N):
		v=i*N+j
		for k in M:
			if k!=i and k!=j:
				for c in R(2):F[v][c]=max(F[v][c],S[v][k]*[1,-1][c])
		a=max(a,abs(sum(F[v])))
print(a)
0