結果

問題 No.555 世界史のレポート
ユーザー kktykkty
提出日時 2017-11-04 17:12:12
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 849 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 163,080 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-11-23 18:00:28
合計ジャッジ時間 32,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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