結果

問題 No.798 コレクション
ユーザー leaf_1415leaf_1415
提出日時 2019-03-15 21:41:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 61,120 KB
実行使用メモリ 34,704 KB
最終ジャッジ日時 2024-07-01 20:37:22
合計ジャッジ時間 1,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 13 ms
22,528 KB
testcase_14 AC 18 ms
29,824 KB
testcase_15 AC 15 ms
27,776 KB
testcase_16 AC 10 ms
16,256 KB
testcase_17 AC 13 ms
23,040 KB
testcase_18 AC 21 ms
33,792 KB
testcase_19 AC 18 ms
30,592 KB
testcase_20 AC 10 ms
16,896 KB
testcase_21 AC 10 ms
15,360 KB
testcase_22 AC 16 ms
27,776 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 22 ms
34,704 KB
testcase_25 AC 21 ms
34,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <algorithm>
#define llint long long

using namespace std;

llint n;
pair<llint, llint> p[2005];
llint dp[2005][2005];

int main(void)
{
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> p[i].second >> p[i].first;
	sort(p+1, p+n+1);
	reverse(p+1, p+n+1);
	
	
	for(int i = 0; i <= n; i++){
		for(int j = 0; j <= n; j++){
			dp[i][j] = 1e18;
		}
	}
	dp[0][0] = 0;
	
	for(int i = 0; i < n; i++){
		for(int j = 0; j <= n; j++){
			dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
			if(j+1 <= n) dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j] + p[i+1].first*j + p[i+1].second);
		}
	}
	cout << dp[n][n-n/3] << endl;
	
	return 0;
}
0