結果

問題 No.309 シャイな人たち (1)
ユーザー snukesnuke
提出日時 2015-12-13 05:03:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 584 ms / 4,000 ms
コード長 2,749 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 20,252 KB
最終ジャッジ日時 2023-10-13 14:16:29
合計ジャッジ時間 7,764 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
20,148 KB
testcase_01 AC 466 ms
20,248 KB
testcase_02 AC 492 ms
20,228 KB
testcase_03 AC 472 ms
20,228 KB
testcase_04 AC 10 ms
4,348 KB
testcase_05 AC 116 ms
9,928 KB
testcase_06 AC 477 ms
20,088 KB
testcase_07 AC 484 ms
20,032 KB
testcase_08 AC 465 ms
20,144 KB
testcase_09 AC 492 ms
20,156 KB
testcase_10 AC 584 ms
20,252 KB
testcase_11 AC 540 ms
20,036 KB
testcase_12 AC 568 ms
20,096 KB
testcase_13 AC 2 ms
4,352 KB
testcase_14 AC 2 ms
4,352 KB
testcase_15 AC 128 ms
9,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <string>
#include <string.h>
#include <cstdlib>
#include <ctime>
#include <cmath>
#include <map>
#include <set>
#include <iostream>
#include <sstream>
#include <numeric>
#include <cctype>
#define fi first
#define se second
#define rep(i,n) for(int i = 0; i < n; ++i)
#define rrep(i,n) for(int i = 1; i <= n; ++i)
#define drep(i,n) for(int i = n-1; i >= 0; --i)
#define gep(i,g,j) for(int i = g.head[j]; i != -1; i = g.e[i].next)
#define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++)
#define rng(a) a.begin(),a.end()
#define maxs(x,y) x = max(x,y)
#define mins(x,y) x = min(x,y)
#define pb push_back
#define sz(x) (int)(x).size()
#define pcnt __builtin_popcount
#define snuke srand((unsigned)clock()+(unsigned)time(NULL));
#define df(x) int x = in()
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
typedef vector<int> vi;
typedef vector<vi> vvi;
inline int in() { int x; scanf("%d",&x); return x;}
inline void priv(vi a) { rep(i,sz(a)) printf("%d%c",a[i],i==sz(a)-1?'\n':' ');}

const int MX = 11, INF = 1000010000;
const ll LINF = 1000000000000000000ll;
const double eps = 1e-10;

int h, w;
double p[MX][MX];
int s[MX][MX];
double dp[MX+1][1<<MX];
int t[1<<(MX<<1)];

int main() {
  scanf("%d%d",&h,&w);
  rep(i,h)rep(j,w) cin >> p[i][j], p[i][j] /= 100;
  rep(i,h)rep(j,w) cin >> s[i][j];
  rep(i,1<<(w<<1)) {
    vi b(w);
    rep(j,w) b[j] = i>>(j<<1)&3;
    int nj = 0;
    bool up = true;
    while (up) {
      up = false;
      rep(j,w) if (!(nj>>j&1)) {
        if (b[j] <= 0) {
          up = true;
          nj |= 1<<j;
          if (j) b[j-1]--;
          if (j+1 < w) b[j+1]--;
        }
      }
    }
    t[i] = nj;
  }
  double ans = 0;
  dp[0][0] = 1;
  rep(i,h) {
    rep(k,1<<w) {
      vi a(w,4);
      double q = 1;
      rep(l,w) if (k>>l&1) q *= p[i][l]; else q *= (1-p[i][l]);
      rep(l,w) if (k>>l&1) a[l] -= 4-s[i][l];
      drep(j,w) if (k>>j&1) {
        for (int l = k;; l = (l-1)&k) {
          if (!(l>>j&1)) dp[i][l] -= dp[i][l|1<<j];
          if (l == 0) break;
        }
      }
      for (int j = k;; j = (j-1)&k) {
        int tj = 0;
        rep(l,w) {
          int c = max(0,min(3,a[l]-(j>>l&1)));
          tj |= c<<(l<<1);
        }
        dp[i+1][t[tj]] += dp[i][j]*q;
        if (j == 0) break;
      }
      rep(j,w) if (k>>j&1) {
        for (int l = k;; l = (l-1)&k) {
          if (!(l>>j&1)) dp[i][l] += dp[i][l|1<<j];
          if (l == 0) break;
        }
      }
    }
    rep(k,1<<w) ans += dp[i+1][k]*pcnt(k);
    rep(j,w)rep(k,1<<w) if (!(k>>j&1)) dp[i+1][k] += dp[i+1][k|1<<j];
  }
  printf("%.10f\n", ans);
  return 0;
}




0