結果
問題 | No.861 ケーキカット |
ユーザー | tempura_pp |
提出日時 | 2019-08-09 23:16:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,092 bytes |
コンパイル時間 | 1,750 ms |
コンパイル使用メモリ | 118,688 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 21:34:04 |
合計ジャッジ時間 | 12,934 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 482 ms
6,816 KB |
testcase_02 | AC | 376 ms
6,816 KB |
testcase_03 | AC | 276 ms
6,816 KB |
testcase_04 | AC | 968 ms
6,820 KB |
testcase_05 | AC | 522 ms
6,816 KB |
testcase_06 | AC | 277 ms
6,816 KB |
testcase_07 | AC | 278 ms
6,820 KB |
testcase_08 | AC | 283 ms
6,820 KB |
testcase_09 | AC | 278 ms
6,816 KB |
testcase_10 | AC | 279 ms
6,816 KB |
testcase_11 | AC | 297 ms
6,820 KB |
testcase_12 | AC | 277 ms
6,816 KB |
testcase_13 | AC | 278 ms
6,820 KB |
testcase_14 | AC | 277 ms
6,816 KB |
testcase_15 | AC | 277 ms
6,816 KB |
testcase_16 | AC | 279 ms
6,816 KB |
testcase_17 | AC | 277 ms
6,816 KB |
testcase_18 | AC | 278 ms
6,820 KB |
testcase_19 | AC | 277 ms
6,816 KB |
testcase_20 | AC | 278 ms
6,816 KB |
testcase_21 | AC | 279 ms
6,816 KB |
testcase_22 | AC | 278 ms
6,820 KB |
testcase_23 | AC | 279 ms
6,820 KB |
ソースコード
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; struct UnionFind{ vector<int> par; UnionFind(int n):par(n,-1){} int find(int x){ if(par[x]<0)return x; return par[x]=find(par[x]); } bool unite(int x,int y){ x=find(x); y=find(y); if(x==y)return false; if(par[x]>par[y]){ par[y]+=par[x]; par[x]=y; } else{ par[x]+=par[y]; par[y]=x; } return true; } bool same(int x,int y){ return find(x)==find(y); } int size(int x){ return -par[find(x)]; } }; int main(){ ll a[5][5]; rep(i,5)rep(j,5)cin>>a[i][j]; ll ans = longinf; int b[5][5]; set<int> st={5,9,10,11,13,17,18,19,20,21,22,23,25,26,27,29,}; rep(mask,1<<24){ if(mask==0)continue; if(st.count(mask&31))continue; ll sum = a[4][4]; b[4][4]=0; rep(j,5)rep(k,5){ if(j==4&&k==4)break; b[j][k]=(mask>>(5*j+k))&1; if(b[j][k])sum-=a[j][k]; else sum+=a[j][k]; } if(abs(sum)>ans)continue; UnionFind uf(25); rep(i,5)rep(j,4){ if(b[i][j]==b[i][j+1])uf.unite(5*i+j,5*i+j+1); } rep(i,4)rep(j,5){ if(b[i][j]==b[i+1][j])uf.unite(5*i+j,5*i+j+5); } int idx = 0; while(b[idx/5][idx%5]==0)++idx; if(uf.size(idx)+uf.size(24)==25){ ans = min(ans,abs(sum)); } } cout<<ans<<endl; return 0; }