結果

問題 No.463 魔法使いのすごろく🎲
ユーザー rickythetarickytheta
提出日時 2016-12-14 00:16:58
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,829 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 160,228 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 10:01:03
合計ジャッジ時間 2,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 WA -
testcase_31 AC 2 ms
5,376 KB
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:71:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   71 |   scanf("%d%d",&n,&m);
      |   ~~~~~^~~~~~~~~~~~~~
main.cpp:74:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   74 |   FOR(i,1,n-1)scanf("%lf",c+i);
      |               ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

#define CHMIN(a,b) a=min((a),(b))
#define CHMAX(a,b) a=max((a),(b))

// mod
const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

// floating
typedef double Real;
const Real EPS = 1e-11;
#define EQ0(x) (abs(x)<EPS)
#define EQ(a,b) (abs(a-b)<EPS)
typedef complex<Real> P;


const int T = 100;
int n,m;
Real c[125];
Real dp[2][T][125];

Real indfs(int x,int y,int z);
inline Real dfs(int x,int y,int z){
  if(dp[x][y][z]!=-1)return dp[x][y][z];
  // dp[x][y][z] = indfs(x,y,z);
  // printf("%d %d %d -> %f\n",x,y,z,dp[x][y][z]);
  // return dp[x][y][z];
  return dp[x][y][z] = indfs(x,y,z);
}
Real indfs(int x,int y,int z){
  if(y==T-1)return c[z];
  if(z==n-1)return 0.0;
  if(x==1){
    // can't use
    Real ans = 0.0;
    FOR(i,1,m+1){
      ans += dfs(x,y+1,min(z+i,2*n-2-z-i));
    }
    return ans/(Real)m + c[z];
  }else{
    // can use
    // don't use
    Real a = 0.0;
    FOR(i,1,m+1)a += dfs(x,y+1,min(z+i,2*n-2-z-i));
    a /= (Real)m;
    Real b = 1.0e25;
    FOR(i,1,m+1)CHMIN(b,dfs(1,y+1,min(z+i,2*n-2-z-i)));
    return min(a,b) + c[z];
  }
}

int main(){
  scanf("%d%d",&n,&m);
  c[0] = 0.0;
  c[n-1] = 0.0;
  FOR(i,1,n-1)scanf("%lf",c+i);
  REP(i,2)REP(j,T)REP(k,n)dp[i][j][k] = -1;
  Real ans = dfs(0,0,0);
  printf("%.12f\n",ans);
  return 0;
}
0