結果
問題 | No.309 シャイな人たち (1) |
ユーザー | snuke |
提出日時 | 2015-12-13 05:03:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 613 ms / 4,000 ms |
コード長 | 2,749 bytes |
コンパイル時間 | 806 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 20,356 KB |
最終ジャッジ日時 | 2024-09-15 11:03:48 |
合計ジャッジ時間 | 8,370 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 537 ms
20,356 KB |
testcase_01 | AC | 506 ms
20,272 KB |
testcase_02 | AC | 528 ms
20,264 KB |
testcase_03 | AC | 507 ms
20,352 KB |
testcase_04 | AC | 10 ms
5,376 KB |
testcase_05 | AC | 125 ms
8,064 KB |
testcase_06 | AC | 522 ms
20,176 KB |
testcase_07 | AC | 543 ms
20,332 KB |
testcase_08 | AC | 516 ms
20,352 KB |
testcase_09 | AC | 539 ms
20,300 KB |
testcase_10 | AC | 613 ms
20,224 KB |
testcase_11 | AC | 605 ms
20,224 KB |
testcase_12 | AC | 613 ms
20,312 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 131 ms
8,064 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:52:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 52 | scanf("%d%d",&h,&w); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#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; }