結果
| 問題 | No.3615 Ge Gusser |
| コンテスト | |
| ユーザー |
ococonomy1
|
| 提出日時 | 2026-08-06 14:54:10 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 5,294 bytes |
| 記録 | |
| コンパイル時間 | 1,164 ms |
| コンパイル使用メモリ | 218,888 KB |
| 実行使用メモリ | 102,656 KB |
| 最終ジャッジ日時 | 2026-08-06 14:54:21 |
| 合計ジャッジ時間 | 9,623 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| サブタスク | 配点 | 結果 |
|---|---|---|
| サンプル | 0 % | AC * 3 |
| 小課題1 | 40 % | WA * 1 RE * 7 |
| 小課題2 | 40 % | WA * 5 RE * 10 |
| 小課題3 | 20 % | AC * 4 WA * 13 RE * 10 |
| 合計 | 2.5 * 0% = 0 点 |
ソースコード
//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using pli = pair<ll,int>;
#define MOD 998244353
//#define MOD 1000000007
#define el '\n'
#define El '\n'
#define YESNO(x) ((x) ? "Yes" : "No")
#define YES YESNO(true)
#define NO YESNO(false)
#define EXIT_ANS(x) {cout << (x) << '\n'; return;}
template <typename T> void inline SORT(T &v){sort(v.begin(),v.end()); return;}
template <typename T> void inline REV(T &v){reverse(v.begin(),v.end()); return;}
template <typename T> void inline VEC_UNIQ(T &v){sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); return;}
template <typename T> auto inline MAX(T &v){return *max_element(v.begin(),v.end());}
template <typename T> auto inline MIN(T &v){return *min_element(v.begin(),v.end());}
template <typename T> auto inline SUM(vector<T> &v){T ans = 0; for(int i = 0; i < (int)v.size(); i++)ans += v[i]; return ans;}
template <typename T> void inline DEC(T &v){for(int i = 0; i < (int)v.size(); i++)v[i]--; return;}
template <typename T> void inline INC(T &v){for(int i = 0; i < (int)v.size(); i++)v[i]++; return;}
void inline TEST(void){cerr << "TEST" << endl; return;}
template <typename T,typename S> bool inline chmin(T &x,S y){
if(x > (T)y){
x = (T)y;
return true;
}
return false;
}
template <typename T,typename S> bool inline chmax(T &x,S y){
if(x < (T)y){
x = (T)y;
return true;
}
return false;
}
template <typename T = long long> vector<T> inline get_vec(int n){
vector<T> ans(n);
for(int i = 0; i < n; i++)cin >> ans[i];
return ans;
}
template <typename T> void inline print_vec(vector<T> &vec,bool kaigyou = false){
int n = (int)vec.size();
for(int i = 0; i < n; i++){
cout << vec[i];
if(kaigyou || i == n - 1)cout << '\n';
else cout << ' ';
}
if(!n)cout << '\n';
return;
}
template <typename T> void inline debug_vec(vector<T> &vec,bool kaigyou = false){
int n = (int)vec.size();
for(int i = 0; i < n; i++){
cerr << vec[i];
if(kaigyou || i == n - 1)cerr << '\n';
else cerr << ' ';
}
if(!n)cerr << '\n';
return;
}
vector<vector<int>> inline get_graph(int n,int m = -1,bool direct = false,bool decrement = true){
if(m == -1)m = n - 1;
vector<vector<int>> g(n);
while(m--){
int u,v;
cin >> u >> v;
if(decrement)u--,v--;
g[u].push_back(v);
if(!direct)g[v].push_back(u);
}
return g;
}
template <typename T> vector<vector<pair<T,int>>> inline get_weighted_graph(int n,int m = -1,bool direct = false,bool decrement = true){
if(m == -1)m = n - 1;
vector<vector<pair<T,int>>> g(n);
while(m--){
int u,v;
cin >> u >> v;
if(decrement)u--,v--;
ll w; cin >> w;
g[u].push_back(pair(w,v));
if(!direct)g[v].push_back(pair(w,u));
}
return g;
}
#define MULTI_TEST_CASE false
void solve(void){
//問題を見たらまず「この問題設定から言えること」をいっぱい言う
//よりシンプルな問題に言い換えられたら、言い換えた先の問題を自然言語ではっきりと書く
//複数の解法のアイデアを思いついた時は全部メモしておく
//g++ -D_GLIBCXX_DEBUG -Wall -O2 g.cpp -o o
int n,m;
cin >> n >> m;
vector<ll> val(n);
for(int i = 0; i < n; i++){
string s; cin >> s;
for(int j = 0; j < m; j++){
if(s[j] == 'o')val[i] += (1LL << j);
}
}
//dp[S] = 状態 S を踏む可能性
vector<long double> dp(1 << n,0);
//ep[S] = 状態 S だったとして、どのくらい絞れているか
vector<ll> ep(1 << n,(1 << m) - 1);
//fp[S] = ここを踏んだとして、終了になるか
vector<bool> fp(1 << n,false);
for(int S = 1; S < (1 << m); S++){
for(int i = 0; i < n; i++){
if(S & (1 << i)){
ep[S] = ep[S ^ (1 << i)] & val[i];
if(__popcount((unsigned)ep[S]) == 1)fp[S] = true;
break;
}
}
}
// debug_vec(ep);
// for(int i = 0; i < (1 << n); i++)cerr << YESNO(fp[i]) << ' '; cerr << el;
dp[0] = 1;
for(int S = 0; S < (1 << n); S++){
if(fp[S])continue;
int cnt = 0;
for(int i = 0; i < n; i++){
if(S & (1 << i))continue;
cnt++;
}
long double p = dp[S]; p /= (long double)cnt;
for(int i = 0; i < n; i++){
if(S & (1 << i))continue;
dp[S | (1 << i)] += p;
}
}
long double ans = 0;
for(int S = 0; S < (1 << n); S++){
if(fp[S]){
long double temp = __popcount((unsigned)S);
//cerr << S << ' ' << temp << ' ' << dp[S] << el;
temp *= dp[S];
ans += temp;
}
}
cout << fixed << setprecision(15) << ans << el;
return;
}
void calc(void){
return;
}
signed main(void){
cin.tie(nullptr);
ios::sync_with_stdio(false);
calc();
int t = 1;
if(MULTI_TEST_CASE)cin >> t;
while(t--){
solve();
}
return 0;
}
ococonomy1