結果

問題 No.555 世界史のレポート
ユーザー koba-e964koba-e964
提出日時 2017-08-11 22:42:14
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 88,856 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 21:25:11
合計ジャッジ時間 1,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;

const int inf = 1e8;

int main(void) {
  int n;
  cin >> n;
  int c, v;
  cin >> c >> v;
  VI dp(n + 1, inf);
  dp[1] = 0;
  REP(i, 1, n) {
    for (int j = 2; i * j <= n; ++j) {
      dp[i * j] = min(dp[i * j], dp[i] + c + (j - 1) * v);
    }
    dp[n] = min(dp[n], dp[i] + c + ((n + i - 1) / i - 1) * v);
  }
  cout << dp[n] << endl;
}
0