結果
問題 | No.555 世界史のレポート |
ユーザー | Bantako |
提出日時 | 2017-08-12 00:12:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,866 ms / 2,000 ms |
コード長 | 575 bytes |
コンパイル時間 | 1,649 ms |
コンパイル使用メモリ | 166,704 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 22:28:45 |
合計ジャッジ時間 | 19,944 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> typedef long long ll; using namespace std; int INF = 1e9; int MOD = 1e9+7; int cp[50001]; int pa[50001]; main(){ int N,C,V; cin >> N >> C >> V; fill(cp,cp+50001,INF); fill(pa,pa+50001,INF); cp[1] = C; pa[1] = 0; for(int i = 1;i <= N;i++){ for(int j = 1;i*(j-1) <= N;j++){ if(i+i*j > N)pa[N] = min(pa[N],cp[i]+V*j); else pa[i+i*j] = min(pa[i+i*j],cp[i]+V*j); } for(int j = i;j <= 50000;j++){ cp[j] = min(cp[j],pa[j]+C); } } cout << pa[N] << endl; }