結果

問題 No.555 世界史のレポート
ユーザー olpheolphe
提出日時 2017-08-11 23:33:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 106,276 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 22:02:09
合計ジャッジ時間 1,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "iomanip"
#include "random"

using namespace std;
const long long int MOD = 1000000007;
const long double EPS = 0.00000001;

long long int N, M, K, Q, W, H, L, R;
long long int ans;


int main() {
	ios::sync_with_stdio(false);
	cin >> N >> K >> Q;
	vector<int>dp(100001, INT_MAX);
	dp[1] = K;
	for (int i = 1; i < N; i++) {
		int box = i;
		for (int j = i * 2; j < N; j+=i) {
			dp[j] = min(dp[j], dp[i] + (int)K+(int)Q*(j - i) / i);
			box = j;
		}
		dp[box + i] = min(dp[box + i], dp[i] + (int)K + (int)Q*(box) / i);
	}
	ans = 100000000;
	for (int i = N; i < N * 2; i++)ans = min((int)ans, dp[i]-(int)K);
	cout << ans << endl;
	return 0;
}
0