結果

問題 No.2331 Maximum Quadrilateral
ユーザー kotatsugamekotatsugame
提出日時 2023-05-28 14:26:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 65,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 05:25:30
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
5,248 KB
testcase_01 AC 60 ms
5,376 KB
testcase_02 AC 69 ms
5,376 KB
testcase_03 AC 70 ms
5,376 KB
testcase_04 AC 92 ms
5,376 KB
testcase_05 AC 97 ms
5,376 KB
testcase_06 AC 95 ms
5,376 KB
testcase_07 AC 82 ms
5,376 KB
testcase_08 AC 57 ms
5,376 KB
testcase_09 AC 55 ms
5,376 KB
testcase_10 AC 48 ms
5,376 KB
testcase_11 AC 52 ms
5,376 KB
testcase_12 AC 46 ms
5,376 KB
testcase_13 AC 52 ms
5,376 KB
testcase_14 AC 100 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 36 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 110 ms
5,376 KB
testcase_21 AC 113 ms
5,376 KB
testcase_22 AC 108 ms
5,376 KB
testcase_23 AC 108 ms
5,376 KB
testcase_24 AC 108 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 2 ms
5,376 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int N;
int X[400],Y[400];
int C[400][400];
int cross(int i,int j){return X[i]*Y[j]-X[j]*Y[i];}
int dp[3][400];
int main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>X[i]>>Y[i];
	for(int i=0;i<N;i++)for(int j=0;j<N;j++)C[i][j]=cross(i,j);
	int ans=-2e9;
	for(int s=0;s<N;s++)
	{
		for(int t=0;t<N;t++)dp[0][t]=C[s][t];
		for(int k=0;k<2;k++)
		{
			for(int j=0;j<N;j++)dp[k+1][j]=-2e9;
			for(int i=0;i<N;i++)for(int j=0;j<N;j++)
			{
				dp[k+1][j]=max(dp[k+1][j],dp[k][i]+C[i][j]);
			}
		}
		for(int i=0;i<N;i++)ans=max(ans,dp[2][i]+C[i][s]);
	}
	cout<<ans<<endl;
}
0