結果

問題 No.861 ケーキカット
ユーザー chocoruskchocorusk
提出日時 2019-08-10 00:18:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 858 ms / 1,000 ms
コード長 1,349 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 99,216 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-07-07 19:05:31
合計ジャッジ時間 18,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
18,944 KB
testcase_01 AC 638 ms
18,816 KB
testcase_02 AC 648 ms
18,688 KB
testcase_03 AC 644 ms
18,816 KB
testcase_04 AC 637 ms
18,816 KB
testcase_05 AC 647 ms
18,816 KB
testcase_06 AC 632 ms
18,816 KB
testcase_07 AC 649 ms
18,816 KB
testcase_08 AC 646 ms
18,816 KB
testcase_09 AC 651 ms
18,944 KB
testcase_10 AC 653 ms
18,816 KB
testcase_11 AC 662 ms
18,816 KB
testcase_12 AC 858 ms
18,816 KB
testcase_13 AC 738 ms
18,816 KB
testcase_14 AC 654 ms
18,816 KB
testcase_15 AC 665 ms
18,944 KB
testcase_16 AC 647 ms
18,816 KB
testcase_17 AC 646 ms
18,816 KB
testcase_18 AC 638 ms
18,816 KB
testcase_19 AC 650 ms
18,816 KB
testcase_20 AC 645 ms
18,816 KB
testcase_21 AC 639 ms
18,816 KB
testcase_22 AC 644 ms
18,944 KB
testcase_23 AC 643 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(ll b){
    used[b]=1;
    for(int i=0; i<25; i++){
        if((b&(1<<i))==0) 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(!used[b|(1<<t)]) dfs(b|(1<<t));
        }
    }
}
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;
}
0