結果
問題 | No.861 ケーキカット |
ユーザー | chocorusk |
提出日時 | 2019-08-10 00:35:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 259 ms / 1,000 ms |
コード長 | 1,475 bytes |
コンパイル時間 | 801 ms |
コンパイル使用メモリ | 99,340 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-07-07 19:06:22 |
合計ジャッジ時間 | 7,569 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 247 ms
18,816 KB |
testcase_01 | AC | 248 ms
18,944 KB |
testcase_02 | AC | 243 ms
18,944 KB |
testcase_03 | AC | 242 ms
18,816 KB |
testcase_04 | AC | 240 ms
18,816 KB |
testcase_05 | AC | 239 ms
18,944 KB |
testcase_06 | AC | 240 ms
18,816 KB |
testcase_07 | AC | 240 ms
18,816 KB |
testcase_08 | AC | 243 ms
18,944 KB |
testcase_09 | AC | 241 ms
18,816 KB |
testcase_10 | AC | 239 ms
18,816 KB |
testcase_11 | AC | 240 ms
18,816 KB |
testcase_12 | AC | 245 ms
18,816 KB |
testcase_13 | AC | 242 ms
18,816 KB |
testcase_14 | AC | 241 ms
18,688 KB |
testcase_15 | AC | 246 ms
18,944 KB |
testcase_16 | AC | 246 ms
18,816 KB |
testcase_17 | AC | 244 ms
18,816 KB |
testcase_18 | AC | 242 ms
18,816 KB |
testcase_19 | AC | 245 ms
18,816 KB |
testcase_20 | AC | 245 ms
18,816 KB |
testcase_21 | AC | 243 ms
18,816 KB |
testcase_22 | AC | 247 ms
18,944 KB |
testcase_23 | AC | 259 ms
18,816 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; ll c[25]; int dx[4]={1, 0, -1, 0}, dy[4]={0, 1, 0, -1}; bool used[1<<25]; void dfs(int b){ used[b]=1; for(int i=0; i<25; i++){ if((b&(1<<i))==0){ if(used[b^(1<<i)]) continue; int x=i/5, y=i%5; for(int k=0; k<4; k++){ int x1=x+dx[k], y1=y+dy[k], t=x1*5+y1; if(x1<0 || x1>=5 || y1<0 || y1>=5) continue; if(b&(1<<t)){ dfs(b^(1<<i)); break; } } } } } int main() { for(int i=0; i<5; i++) for(int j=0; j<5; j++) cin>>c[i*5+j]; for(int i=0; i<25; i++) dfs(1<<i); ll ans=1e18; for(int i=0; i<(1<<25); i++){ if(used[i] && used[(1<<25)-1-i]){ ll cnt0=0, cnt1=0; for(int j=0; j<25; j++){ if(i&(1<<j)) cnt1+=c[j]; else cnt0+=c[j]; } ans=min(ans, abs(cnt0-cnt1)); } } cout<<ans<<endl; return 0; }