結果
問題 | No.23 技の選択 |
ユーザー | NotationNap |
提出日時 | 2015-04-26 05:48:03 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 395 bytes |
コンパイル時間 | 1,062 ms |
コンパイル使用メモリ | 157,596 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 16:46:55 |
合計ジャッジ時間 | 1,911 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include "bits/stdc++.h"using namespace std;typedef long long Int;#define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i))int H, A, D;double dp[10001];bool mark[10001];double f(int h) {if (h <= 0) return 0;if (mark[h]) return dp[h];double res = min(1 + f(h-A),1.5 + f(h - D));mark[h] = true;return dp[h] = res;}int main() {cin >> H >> A >> D;printf("%f\n", f(H));}