結果

問題 No.861 ケーキカット
ユーザー kotatsugamekotatsugame
提出日時 2020-06-06 13:44:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 549 ms / 1,000 ms
コード長 1,138 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 83,052 KB
実行使用メモリ 25,328 KB
最終ジャッジ日時 2024-06-06 01:42:55
合計ジャッジ時間 14,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
24,944 KB
testcase_01 AC 536 ms
24,296 KB
testcase_02 AC 516 ms
24,296 KB
testcase_03 AC 518 ms
23,780 KB
testcase_04 AC 516 ms
24,168 KB
testcase_05 AC 529 ms
25,328 KB
testcase_06 AC 524 ms
24,172 KB
testcase_07 AC 513 ms
25,072 KB
testcase_08 AC 519 ms
24,148 KB
testcase_09 AC 520 ms
24,424 KB
testcase_10 AC 520 ms
24,040 KB
testcase_11 AC 507 ms
23,256 KB
testcase_12 AC 525 ms
24,420 KB
testcase_13 AC 516 ms
24,292 KB
testcase_14 AC 524 ms
24,684 KB
testcase_15 AC 526 ms
23,520 KB
testcase_16 AC 521 ms
24,172 KB
testcase_17 AC 549 ms
24,560 KB
testcase_18 AC 530 ms
24,300 KB
testcase_19 AC 518 ms
23,652 KB
testcase_20 AC 510 ms
24,020 KB
testcase_21 AC 517 ms
23,780 KB
testcase_22 AC 508 ms
24,804 KB
testcase_23 AC 518 ms
24,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:64:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   64 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<queue>
#include<algorithm>
using namespace std;
struct precalc{
	bool ok[1<<25];
	precalc()
	{
		queue<int>P;
		ok[0]=true;
		for(int i=0;i<25;i++)
		{
			ok[1<<i]=true;
			P.push(1<<i);
		}
		while(!P.empty())
		{
			int u=P.front();P.pop();
			for(int i=0;i<25;i++)
			{
				if(!(u>>i&1))continue;
				if(i>=5&&!(u>>i-5&1))
				{
					int v=u|1<<i-5;
					if(!ok[v])
					{
						ok[v]=true;
						P.push(v);
					}
				}
				if(i<20&&!(u>>i+5&1))
				{
					int v=u|1<<i+5;
					if(!ok[v])
					{
						ok[v]=true;
						P.push(v);
					}
				}
				if(i%5>0&&!(u>>i-1&1))
				{
					int v=u|1<<i-1;
					if(!ok[v])
					{
						ok[v]=true;
						P.push(v);
					}
				}
				if(i%5<4&&!(u>>i+1&1))
				{
					int v=u|1<<i+1;
					if(!ok[v])
					{
						ok[v]=true;
						P.push(v);
					}
				}
			}
		}
	}
};
precalc OK;
long C[25];
main()
{
	long all=0;
	for(int i=0;i<25;i++)
	{
		cin>>C[i];
		all+=C[i];
	}
	long ans=all;
	for(int i=0;i<1<<25;i++)
	{
		if(OK.ok[i]&&OK.ok[(1<<25)-1^i])
		{
			long t=0;
			for(int j=0;j<25;j++)if(i>>j&1)t+=C[j];
			ans=min(ans,abs(all-t*2));
		}
	}
	cout<<ans<<endl;
}
0