結果

問題 No.555 世界史のレポート
ユーザー kktykkty
提出日時 2017-11-04 17:12:12
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 849 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 161,256 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-02 22:45:22
合計ジャッジ時間 4,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,n) FOR(i,0,n)
#define FOR(i,a,b) for(ll i=a;i<b;i++)
#define PB push_back
#define LB lower_bound
#define UB upper_bound
#define PQ priority_queue
#define UM unordered_map
#define ALL(a) (a).begin(),(a).end()
#define MOD 1000000007
typedef vector<ll> vi;
typedef vector<vector<ll>> vvi;
const ll INF = (1ll << 30);
typedef pair<ll,ll> pii;
struct Edge{ ll s,t,c; };
typedef vector<vector<ll>> Graph;
typedef vector<pii> vpii;

vi get(ll a) {
  vi ret;
  for(ll i=1;i*2<=a;i++) {
    if(a%i==0) ret.PB(i);
  }
  return ret;
}

int main() {
  ll N,C,V; cin>>N>>C>>V;
  vi A(2*N+1,INF);
  A[1]=0;
  FOR(i,2,2*N+1) {
    vi v=get(i);
    for(ll j:v) {
      A[i]=min(A[i],A[j]+C+V*(i/j-1));
    }
  }
  ll ans=INF;
  FOR(i,N,2*N+1) ans=min(ans,A[i]);
  cout<<ans<<endl;
}
0