結果
問題 | No.23 技の選択 |
ユーザー | hotpepsi |
提出日時 | 2015-04-26 00:59:49 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 515 bytes |
コンパイル時間 | 465 ms |
コンパイル使用メモリ | 63,128 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 16:46:53 |
合計ジャッジ時間 | 1,238 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <iostream> #include <algorithm> #include <sstream> #include <vector> using namespace std; int main(int argc, char *argv[]) { string s; getline(cin, s); int H, A, D; stringstream ss(s); ss >> H >> A >> D; double dp[10001]; for (int i = 0; i <= H; ++i) { dp[i] = 1e9; } dp[0] = 0; for (int h = 0; h < H; ++h) { if (dp[h] < 1e9) { int n = min(H, h + A); dp[n] = min(dp[n], dp[h] + 1); n = min(H, h + D); dp[n] = min(dp[n], dp[h] + 1.5); } } cout << dp[H] << endl; return 0; }