結果
問題 | No.309 シャイな人たち (1) |
ユーザー | Yang33 |
提出日時 | 2018-10-01 09:38:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,474 ms / 4,000 ms |
コード長 | 2,923 bytes |
コンパイル時間 | 1,771 ms |
コンパイル使用メモリ | 177,672 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 09:29:26 |
合計ジャッジ時間 | 19,783 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,367 ms
6,820 KB |
testcase_01 | AC | 2,057 ms
6,816 KB |
testcase_02 | AC | 73 ms
6,816 KB |
testcase_03 | AC | 1,544 ms
6,816 KB |
testcase_04 | AC | 21 ms
6,820 KB |
testcase_05 | AC | 277 ms
6,816 KB |
testcase_06 | AC | 70 ms
6,816 KB |
testcase_07 | AC | 141 ms
6,816 KB |
testcase_08 | AC | 1,677 ms
6,816 KB |
testcase_09 | AC | 2,138 ms
6,816 KB |
testcase_10 | AC | 2,474 ms
6,820 KB |
testcase_11 | AC | 2,329 ms
6,820 KB |
testcase_12 | AC | 1,732 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 12 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using VS = vector<string>; using LL = long long; using VI = vector<int>; using VVI = vector<VI>; using PII = pair<int, int>; using PLL = pair<LL, LL>; using VL = vector<LL>; using VVL = vector<VL>; #define ALL(a) begin((a)),end((a)) #define RALL(a) (a).rbegin(), (a).rend() #define SZ(a) int((a).size()) #define SORT(c) sort(ALL((c))) #define RSORT(c) sort(RALL((c))) #define UNIQ(c) (c).erase(unique(ALL((c))), end((c))) #define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++) #define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--) #define debug(x) cerr << #x << ": " << x << endl const int INF = 1e9; const LL LINF = 1e16; const LL MOD = 1000000007; const double PI = acos(-1.0); int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 }; /* ----- 2018/09/30 Problem: yukicoder 309 / Link: http://yukicoder.me/problems/no/309 ----- */ /* ------問題------ -----問題ここまで----- */ /* -----解説等----- ----解説ここまで---- */ LL ans = 0LL; int main() { cin.tie(0); ios_base::sync_with_stdio(false); int H, W; cin >> H >> W; vector<vector<double>>P(H, vector<double>(W)); FOR(i, 0, H) { FOR(j, 0, W) { cin >> P[i][j]; P[i][j] /= 100.0; } } VVI S(H, VI(W)); FOR(i, 0, H) { FOR(j, 0, W) { cin >> S[i][j]; } } vector<vector<double>>dp(H + 1, vector<double>(1 << W, 0)); dp[0][0] = 1; FOR(i, 0, H) { FOR(state, 0, 1 << W) { double p = 1; FOR(j, 0, W) { if (state & 1 << j) { p *= P[i][j]; } else { p *= 1 - P[i][j]; } } // 現在の列がstateであるような確率pは分かっている auto ok = [](int s, int k) { return s & 1 << k; }; FOR(pre, 0, 1 << W) { if (dp[i][pre] < 1e-12)continue; int upstate = 0; FOR(j, 0, W) { if (S[i][j] == 0 && ok(state, j))upstate |= 1 << j; if (S[i][j] == 1 && ok(state, j) && ok(pre, j))upstate |= 1 << j; } FOR(j, 1, W) { if (S[i][j] == 1 && ok(state, j) && ok(upstate, j - 1))upstate |= 1 << j; if (S[i][j] == 2 && ok(state, j) && ok(pre, j) && ok(upstate, j - 1))upstate |= 1 << j; } FORR(j, W - 2, 0 - 1) { if (S[i][j] == 1 && ok(state, j) && ok(upstate, j + 1))upstate |= 1 << j; if (S[i][j] == 2 && ok(state, j) && ok(pre, j) && ok(upstate, j + 1))upstate |= 1 << j; } FORR(j, W - 2, 0) { if (S[i][j] == 2 && ok(state, j) && ok(upstate,j-1) && ok(upstate, j + 1))upstate |= 1 << j; if (S[i][j] == 3 && ok(state, j) && ok(pre, j) && ok(upstate, j - 1) && ok(upstate, j + 1))upstate |= 1 << j; } dp[i + 1][upstate] += p * dp[i][pre]; } } } double ans = 0; FOR(i, 0, H) { FOR(state, 0, 1 << W) { ans += __builtin_popcount(state)*dp[i + 1][state]; } } cout << fixed << setprecision(10) << ans << "\n"; return 0; }