結果
問題 | No.555 世界史のレポート |
ユーザー | nanophoto12 |
提出日時 | 2017-08-16 13:49:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 975 bytes |
コンパイル時間 | 675 ms |
コンパイル使用メモリ | 91,920 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 12:52:01 |
合計ジャッジ時間 | 2,107 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <cmath> #include <vector> #include <list> #include <map> #include <set> #include <functional> #include <queue> #include <iostream> #include <string.h> #include <iomanip> #include <algorithm> #include <functional> #include <cstdint> #include <climits> #include <unordered_set> #include <sstream> #include <stack> using namespace std; typedef long long int ll; typedef pair<int,int> pii; typedef tuple<int,int,int> t3; ll dp[100010]; int main() { int n, c, v; cin >> n >> c >> v; fill(dp, dp + 100010, 1e7); dp[0] = 0; dp[1] = 0; dp[2] = c + v; for(int i = 3;i < 2 * n;i++) { dp[i] = dp[1] + c + v * (i-1); for(int j = 2;j < sqrt(i) + 1;j++) { if(i % j == 0) { dp[i] = min(dp[i], dp[j] + c + v * ((i-1) / j)); } } } ll m = 1e10; for(int i = n;i <= 2 * n;i++) { m = min(m, dp[i]); } cout << m << endl; return 0; }