結果

問題 No.421 しろくろチョコレート
ユーザー motimoti
提出日時 2016-09-10 00:19:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,695 bytes
コンパイル時間 1,712 ms
コンパイル使用メモリ 171,120 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-16 19:02:25
合計ジャッジ時間 168,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 2 ms
10,496 KB
testcase_13 AC 2 ms
8,576 KB
testcase_14 AC 2 ms
8,448 KB
testcase_15 AC 2 ms
10,020 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2 ms
8,576 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
10,496 KB
testcase_24 AC 1 ms
8,576 KB
testcase_25 AC 2 ms
10,496 KB
testcase_26 AC 2 ms
8,448 KB
testcase_27 AC 2 ms
10,496 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 AC 2 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)
#define all(c) (c).begin(), (c).end()
#define zero(a) memset(a, 0, sizeof a)
#define minus(a) memset(a, -1, sizeof a)
#define watch(a) { cout << #a << " = " << a << endl; }
template<class T1, class T2> inline bool minimize(T1 &a, T2 b) { return b < a && (a = b, 1); }
template<class T1, class T2> inline bool maximize(T1 &a, T2 b) { return a < b && (a = b, 1); }

typedef long long ll;
int const inf = 1<<29;

int N, M;
vector<string> G;

int rec() {

  int ret = 0;
  bool ok = 0;

  rep(i, N) rep(j, M - 1) {
    if(G[i][j] == 'w' && G[i][j + 1] == 'b') {
      G[i][j] = G[i][j+1] = '.';
      ret = max(ret, rec() + 100);
      G[i][j] = 'w', G[i][j+1] = 'b';
      ok = 1;
    }
    else if(G[i][j] == 'b' && G[i][j + 1] == 'w') {
      G[i][j] = G[i][j+1] = '.';
      ret = max(ret, rec() + 100);
      G[i][j] = 'b', G[i][j+1] = 'w';
      ok = 1;
    }
  }

  rep(i, N - 1) rep(j, M) {
    if(G[i][j] == 'w' && G[i + 1][j] == 'b') {
      G[i][j] = G[i + 1][j] = '.';
      ret = max(ret, rec() + 100);
      G[i][j] = 'w', G[i + 1][j] = 'b';
      ok = 1;
    }
    else if(G[i][j] == 'b' && G[i + 1][j] == 'w') {
      G[i][j] = G[i + 1][j] = '.';
      ret = max(ret, rec() + 100);
      G[i][j] = 'b', G[i + 1][j] = 'w';
      ok = 1;
    }
  }

  if(!ok) {
    int b = 0, w = 0;

    rep(i, N) rep(j, M) {
      b += G[i][j] == 'b';
      w += G[i][j] == 'w';
    }

    ret += min(b, w) * 10;
    ret += b + w - 2 * min(b, w);
  }
  return ret;
}

int main() {

  cin >> N >> M;
  G.resize(N);
  rep(i, N) cin >> G[i];

  cout << rec() << endl;

  return 0;
}
0