結果
問題 | No.23 技の選択 |
ユーザー | fiord |
提出日時 | 2015-07-16 22:51:43 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 1,204 ms |
コンパイル使用メモリ | 158,564 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 16:47:22 |
合計ジャッジ時間 | 1,936 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int h,a,d; cin>>h>>a>>d; vector<double> dp(h+1,0.0); for(int i=h-1;i>=0;i--){ dp[i]=min(dp[min(h,i+a)]+1,dp[min(h,i+d)]+1.5); } printf("%.15lf\n",dp[0]); return 0; }