#include <bits/stdc++.h> using namespace std; int h, w; using ull = unsigned long long; ull C[65][65]; // int drs[] = {-2, -1, -1, 0, 0, 1, 1, 2}; // int dcs[] = {0, 1, -1, 2, -2, 1, -1, 0}; // int val[] = {1, 2, 2, 1, 1, 2, 2, 1}; int drs[] = {0, 0, 1, -1}; int dcs[] = {1, -1, 0, 0}; // mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); bool ok(int row, int col) { return row >= 0 && col >= 0 && row < h && col < w; } ull okcnt(int row, int col) { ull res = 0; // for (int i = 0; i < 8; i++) { // res += val[i] * ok(row + drs[i], col + dcs[i]); // } for (int i = 0; i < 4; i++) { res += ok(row + drs[i], col + dcs[i]); } return res; } ull sumsc(bool parity) { ull res = 0; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { if (parity == ((row + col) & 1)) res += okcnt(row, col); } } return res; } double proba(int row, int col) { return double(okcnt(row, col)) / sumsc((row + col) & 1); } void show(ull state) { ull power = 1; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { cout << ((state & power) ? 'O' : '.'); power <<= 1; } cout << endl; } } // double state_proba(ull state, bool parity) { // show(state); // ull power = 1; // int row, col; // ull sum = sumsc(parity); // for (row = 0; row < h; row++) { // for (col = 0; col < w; col++) { // parity = 1 - parity; // if (state & power) goto done; // power <<= 1; // } // } // if (row == h && col == w) return parity; // done: // return double(okcnt(row, col)) / sum * state_proba(state ^ power, parity); // } // int _a = 75, _b = 74, _m = (1 << 16) + 1; // int seed = 2137; // int rng() { // return seed = (_a * seed + _b) % _m; // } // unordered_set<ull> seen; // ull count_reachable(ull state, bool onestep) { // int count = __builtin_popcountl(state); // if (!count) return 1; // array<ull, 8> positions; // array<int, 8> expos; // ull power = 1; // int expo = 0; // int i = 0; // for (int row = 0; row < h; row++) { // for (int col = 0; col < w; col++) { // if (state & power) { // positions[i] = power; // expos[i] = expo; // if (++i == count) goto done; // } // power <<= 1; // expo++; // } // } // // cerr << count << endl; // done: // // array<ull, 32> reachable; // if (!onestep) seen = unordered_set<ull>(); // for (int j = 0; j < count; j++) { // expo = expos[j]; // ull pos = positions[j]; // if (expo % w) { // ull target = pos >> 1; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // if ((expo + 1) % w) { // ull target = pos << 1; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // if (expo >= w) { // ull target = pos >> w; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // if (expo < (h - 1) * w) { // ull target = pos << w; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // } // // cerr << reachcnt << endl; // // return reachable[rng() % reachcnt]; // return seen.size(); // } // // map<ull, double> counts; void solve() { C[0][0] = 1; for (int n = 1; n <= 64; ++n) { C[n][0] = C[n][n] = 1; for (int k = 1; k < n; ++k) { C[n][k] = C[n - 1][k - 1] + C[n - 1][k]; } } cin >> h >> w; ull power = 1; ull state = 0; bool parity = 1; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { char c; cin >> c; if (c == 'O') { state |= power; parity ^= (row + col) & 1; } power <<= 1; } } bool old_parity = parity; // cout << state << endl; ull target_state = 0; double tproba = 1; power = 1; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { char c; cin >> c; if (c == 'O') { target_state |= power; parity ^= (row + col) & 1; tproba *= proba(row, col); } power <<= 1; } } // cout << target_state << endl; if (!parity) { cout << "0" << endl; return; } // ull target_reachable = count_reachable(target_state, true); // ull sum_reachable = 0; int popcount = __builtin_popcountl(state); // if (popcount != __builtin_popcount(target_state)) { // cout << "0" << endl; // return; // } while (popcount) { tproba *= popcount; popcount--; } // cout.precision(16); cout << fixed << setprecision(15) << tproba << endl; // cout << fixed << setprecision(15) << state_proba(state, old_parity) << endl; // array<ull, 64> avail; // iota(avail.begin(), avail.end(), 0); // int len = w * h; // int got = 0; // for (got = 0; got < 10000000;) { // shuffle(avail.begin(), avail.begin() + len, rng); // ull random_state = 0; // for (int cnt = 0; cnt < popcount; cnt++) { // random_state |= (ull)1 << avail[cnt]; // } // got++; // sum_reachable += count_reachable(random_state, true); // } // cout << target_reachable << endl; // cout << double(sum_reachable) / got << endl; // cout << double(target_reachable * got) / sum_reachable / C[h * w][popcount] << endl; // // for (int i = 0; i < 10; i++) { // state = move(state); // show(state); // } } int main() { ios_base::sync_with_stdio(false); cin.tie(0); // #ifdef LOCAL // int t; cin >> t; while (t--) // #endif solve(); cout.flush(); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | #include <bits/stdc++.h> using namespace std; int h, w; using ull = unsigned long long; ull C[65][65]; // int drs[] = {-2, -1, -1, 0, 0, 1, 1, 2}; // int dcs[] = {0, 1, -1, 2, -2, 1, -1, 0}; // int val[] = {1, 2, 2, 1, 1, 2, 2, 1}; int drs[] = {0, 0, 1, -1}; int dcs[] = {1, -1, 0, 0}; // mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); bool ok(int row, int col) { return row >= 0 && col >= 0 && row < h && col < w; } ull okcnt(int row, int col) { ull res = 0; // for (int i = 0; i < 8; i++) { // res += val[i] * ok(row + drs[i], col + dcs[i]); // } for (int i = 0; i < 4; i++) { res += ok(row + drs[i], col + dcs[i]); } return res; } ull sumsc(bool parity) { ull res = 0; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { if (parity == ((row + col) & 1)) res += okcnt(row, col); } } return res; } double proba(int row, int col) { return double(okcnt(row, col)) / sumsc((row + col) & 1); } void show(ull state) { ull power = 1; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { cout << ((state & power) ? 'O' : '.'); power <<= 1; } cout << endl; } } // double state_proba(ull state, bool parity) { // show(state); // ull power = 1; // int row, col; // ull sum = sumsc(parity); // for (row = 0; row < h; row++) { // for (col = 0; col < w; col++) { // parity = 1 - parity; // if (state & power) goto done; // power <<= 1; // } // } // if (row == h && col == w) return parity; // done: // return double(okcnt(row, col)) / sum * state_proba(state ^ power, parity); // } // int _a = 75, _b = 74, _m = (1 << 16) + 1; // int seed = 2137; // int rng() { // return seed = (_a * seed + _b) % _m; // } // unordered_set<ull> seen; // ull count_reachable(ull state, bool onestep) { // int count = __builtin_popcountl(state); // if (!count) return 1; // array<ull, 8> positions; // array<int, 8> expos; // ull power = 1; // int expo = 0; // int i = 0; // for (int row = 0; row < h; row++) { // for (int col = 0; col < w; col++) { // if (state & power) { // positions[i] = power; // expos[i] = expo; // if (++i == count) goto done; // } // power <<= 1; // expo++; // } // } // // cerr << count << endl; // done: // // array<ull, 32> reachable; // if (!onestep) seen = unordered_set<ull>(); // for (int j = 0; j < count; j++) { // expo = expos[j]; // ull pos = positions[j]; // if (expo % w) { // ull target = pos >> 1; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // if ((expo + 1) % w) { // ull target = pos << 1; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // if (expo >= w) { // ull target = pos >> w; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // if (expo < (h - 1) * w) { // ull target = pos << w; // if (!(state & target)) { // // ull new_state = (state ^ pos) | target; // // reachable[reachcnt++] = new_state; // if (onestep) { // seen.insert((state ^ pos) | target); // } else { // count_reachable((state ^ pos) | target, false); // } // } // } // } // // cerr << reachcnt << endl; // // return reachable[rng() % reachcnt]; // return seen.size(); // } // // map<ull, double> counts; void solve() { C[0][0] = 1; for (int n = 1; n <= 64; ++n) { C[n][0] = C[n][n] = 1; for (int k = 1; k < n; ++k) { C[n][k] = C[n - 1][k - 1] + C[n - 1][k]; } } cin >> h >> w; ull power = 1; ull state = 0; bool parity = 1; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { char c; cin >> c; if (c == 'O') { state |= power; parity ^= (row + col) & 1; } power <<= 1; } } bool old_parity = parity; // cout << state << endl; ull target_state = 0; double tproba = 1; power = 1; for (int row = 0; row < h; row++) { for (int col = 0; col < w; col++) { char c; cin >> c; if (c == 'O') { target_state |= power; parity ^= (row + col) & 1; tproba *= proba(row, col); } power <<= 1; } } // cout << target_state << endl; if (!parity) { cout << "0" << endl; return; } // ull target_reachable = count_reachable(target_state, true); // ull sum_reachable = 0; int popcount = __builtin_popcountl(state); // if (popcount != __builtin_popcount(target_state)) { // cout << "0" << endl; // return; // } while (popcount) { tproba *= popcount; popcount--; } // cout.precision(16); cout << fixed << setprecision(15) << tproba << endl; // cout << fixed << setprecision(15) << state_proba(state, old_parity) << endl; // array<ull, 64> avail; // iota(avail.begin(), avail.end(), 0); // int len = w * h; // int got = 0; // for (got = 0; got < 10000000;) { // shuffle(avail.begin(), avail.begin() + len, rng); // ull random_state = 0; // for (int cnt = 0; cnt < popcount; cnt++) { // random_state |= (ull)1 << avail[cnt]; // } // got++; // sum_reachable += count_reachable(random_state, true); // } // cout << target_reachable << endl; // cout << double(sum_reachable) / got << endl; // cout << double(target_reachable * got) / sum_reachable / C[h * w][popcount] << endl; // // for (int i = 0; i < 10; i++) { // state = move(state); // show(state); // } } int main() { ios_base::sync_with_stdio(false); cin.tie(0); // #ifdef LOCAL // int t; cin >> t; while (t--) // #endif solve(); cout.flush(); } |