結果

問題 No.798 コレクション
ユーザー kotatsugamekotatsugame
提出日時 2019-03-15 22:30:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-07-01 21:09:51
合計ジャッジ時間 1,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 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 6 ms
10,624 KB
testcase_14 AC 8 ms
12,800 KB
testcase_15 AC 7 ms
12,160 KB
testcase_16 AC 5 ms
9,216 KB
testcase_17 AC 7 ms
10,880 KB
testcase_18 AC 9 ms
13,940 KB
testcase_19 AC 8 ms
13,056 KB
testcase_20 AC 5 ms
9,216 KB
testcase_21 AC 5 ms
8,960 KB
testcase_22 AC 7 ms
12,032 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 10 ms
14,252 KB
testcase_25 AC 10 ms
14,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int n;
vector<pair<int,int> >a;
long dp[2001][700];
main()
{
	cin>>n;
	for(int i=0;i<n;i++)
	{
		int u,v;cin>>u>>v;
		a.push_back(make_pair(v,u));
	}
	sort(a.begin(),a.end());
	reverse(a.begin(),a.end());
	for(int i=0;i<=n;i++)for(int j=0;j<700;j++)dp[i][j]=9e18;
	dp[0][0]=0;
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<=n/3;j++)
		{
			dp[i+1][j+1]=min(dp[i+1][j+1],dp[i][j]);
			dp[i+1][j]=min(dp[i+1][j],dp[i][j]+a[i].second+1L*a[i].first*(i-j));
		}
	}
	cout<<dp[n][n/3]<<endl;
}
0