結果

問題 No.460 裏表ちわーわ
ユーザー Hoi_koroHoi_koro
提出日時 2016-12-13 23:35:25
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 1,930 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 116,588 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-20 02:26:16
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 4 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 30 ms
4,376 KB
testcase_06 AC 28 ms
4,380 KB
testcase_07 AC 26 ms
4,376 KB
testcase_08 AC 26 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 27 ms
4,376 KB
testcase_11 AC 28 ms
4,376 KB
testcase_12 AC 28 ms
4,376 KB
testcase_13 AC 26 ms
4,376 KB
testcase_14 AC 27 ms
4,376 KB
testcase_15 AC 27 ms
4,380 KB
testcase_16 AC 30 ms
4,376 KB
testcase_17 AC 26 ms
4,376 KB
testcase_18 AC 27 ms
4,376 KB
testcase_19 AC 27 ms
4,380 KB
testcase_20 AC 28 ms
4,376 KB
testcase_21 AC 27 ms
4,376 KB
testcase_22 AC 27 ms
4,376 KB
testcase_23 AC 26 ms
4,380 KB
testcase_24 AC 26 ms
4,376 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <iomanip>
#include <cstdio>
#include <cassert>
#include <algorithm>
#include <iterator>
#include <string>
#include <vector>
#include <list>
#include <deque>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <tuple>
#include <queue>
#include <stack>
#include <functional>
#include <utility>
#include <complex>
#include <bitset>
#include <numeric>
#include <random>
using namespace std;

#define REP(i,n) for(int (i)=0; (i)<(n) ;++(i))
#define REPN(i,a,n) FOR((i),(a),(a)+(n))
#define FOR(i,a,b) for(int (i)=(a); (i)<(b) ;++(i))
#define PB push_back
#define MP make_pair
#define SE second
#define FI first
#define DBG(a) cerr<<(a)<<endl;
#define dump(a) cerr<<#a <<' '<< a <<endl;
#define ALL(v) (v).begin(),(v).end()
typedef long long LL;  typedef pair<LL, LL> PLL; typedef vector<LL> VLL;
typedef pair<int,int>PI; typedef vector<int> VI;
const LL LINF=334ll<<53; const int INF=15<<26; const LL MOD=1E9+7;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n,m;
    cin >> m >> n;
    vector<VI> res(m+2,VI(n+2));
    REP(i,m){
        REP(j,n){
            cin >> res[i+1][j+1];
        }
    }
    int ans=INF;
    REP(i,(1<<(m+n-1))){
        vector<VI>flip(m+2,VI(n+2));
        int cnt=0;
        REP(j,n) flip[1][j+1]=((i>>j)&1);
        FOR(j,1,m) flip[j+1][1]=((i>>(n+j-1))&1);
        FOR(j,1,m+1){
            FOR(k,1,n+1){
                flip[j+1][k+1]=res[j][k];
                REP(h,3){
                    REP(g,(h==2?2:3)){
                        flip[j+1][k+1]^=flip[j-1+h][k-1+g];
                    }
                }
                cnt+=flip[j+1][k+1];
                if((j==m or k==n)and flip[j+1][k+1]==1) cnt=INF;
            }
        }
        cnt+=__builtin_popcount(i);
        ans=min(ans,cnt);
    }
    if(ans==INF)cout << "Impossible"<<endl;
    else cout << ans <<endl;

    return 0;
}
0