結果

問題 No.1045 直方体大学
ユーザー kotatsugamekotatsugame
提出日時 2020-05-01 21:45:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 68,096 KB
実行使用メモリ 28,012 KB
最終ジャッジ日時 2024-06-07 04:11:58
合計ジャッジ時間 2,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 40 ms
18,432 KB
testcase_09 AC 35 ms
17,408 KB
testcase_10 AC 27 ms
15,104 KB
testcase_11 AC 30 ms
14,464 KB
testcase_12 AC 49 ms
27,884 KB
testcase_13 AC 84 ms
27,880 KB
testcase_14 AC 40 ms
17,280 KB
testcase_15 AC 71 ms
27,008 KB
testcase_16 AC 78 ms
27,988 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 453 ms
28,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   10 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
int A[16][3];
int dp[1<<16][16][6];
int dx[6]={0,0,1,1,2,2};
int dy[6]={1,2,0,2,0,1};
int dz[6]={2,1,2,0,1,0};
main()
{
	cin>>N;
	for(int i=0;i<N;i++)for(int j=0;j<3;j++)cin>>A[i][j];
	for(int i=0;i<N;i++)
	{
		for(int j=0;j<6;j++)dp[1<<i][i][j]=A[i][dz[j]];
	}
	int ans=0;
	for(int i=1;i<1<<N;i++)for(int j=0;j<N;j++)for(int k=0;k<6;k++)
	{
		if(dp[i][j][k]==0)continue;
		ans=max(ans,dp[i][j][k]);
		for(int l=0;l<N;l++)if(!(i>>l&1))for(int m=0;m<6;m++)
		{
			if(A[j][dx[k]]>=A[l][dx[m]]&&A[j][dy[k]]>=A[l][dy[m]])
			{
				dp[i|1<<l][l][m]=max(dp[i|1<<l][l][m],dp[i][j][k]+A[l][dz[m]]);
			}
		}
	}
	cout<<ans<<endl;
}
0