結果
問題 | No.460 裏表ちわーわ |
ユーザー | beet |
提出日時 | 2019-03-30 17:06:03 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,894 bytes |
コンパイル時間 | 2,427 ms |
コンパイル使用メモリ | 199,144 KB |
最終ジャッジ日時 | 2025-01-07 00:38:49 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 5 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 21 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 21 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 23 ms
6,820 KB |
testcase_14 | AC | 23 ms
6,820 KB |
testcase_15 | AC | 21 ms
6,820 KB |
testcase_16 | WA | - |
testcase_17 | AC | 21 ms
6,820 KB |
testcase_18 | AC | 22 ms
6,824 KB |
testcase_19 | AC | 22 ms
6,820 KB |
testcase_20 | WA | - |
testcase_21 | AC | 23 ms
6,820 KB |
testcase_22 | AC | 21 ms
6,816 KB |
testcase_23 | AC | 24 ms
6,820 KB |
testcase_24 | AC | 22 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,820 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> vector<T> make_v(size_t a){return vector<T>(a);} template<typename T,typename... Ts> auto make_v(size_t a,Ts... ts){ return vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); } template<typename T,typename U,typename... V> typename enable_if<is_same<T, U>::value!=0>::type fill_v(U &u,const V... v){u=U(v...);} template<typename T,typename U,typename... V> typename enable_if<is_same<T, U>::value==0>::type fill_v(U &u,const V... v){ for(auto &e:u) fill_v<T>(e,v...); } //INSERT ABOVE HERE signed main(){ int h,w; cin>>h>>w; auto a=make_v<int>(h,w); for(int i=0;i<h;i++) for(int j=0;j<w;j++) cin>>a[i][j]; const int INF = 1e9; int ans=INF,cnt=0; auto in=[&](int y,int x){ return 0<=y&&y<h&&0<=x&&x<w; }; auto flip=[&](int y,int x){ for(int i=-1;i<=1;i++) for(int j=-1;j<=1;j++) if(in(y+i,x+j)) a[y+i][x+j]^=1; }; function<void(int, int)> dfs= [&](int y,int x)->void{ if(y==h){ for(int i=0;i<h;i++) for(int j=0;j<w;j++) if(a[i][j]) return; chmin(ans,cnt); return; } int ny=y+(x+1)/w,nx=(x+1)%w; if(y==0||x==0){ dfs(ny,nx); flip(y,x); cnt++; dfs(ny,nx); flip(y,x); cnt--; return; } if(a[y-1][x-1]){ flip(y,x); cnt++; dfs(ny,nx); flip(y,x); cnt--; }else{ dfs(ny,nx); } }; dfs(0,0); if(ans>=INF) cout<<"Impossible"<<endl; cout<<ans<<endl; return 0; }