結果

問題 No.798 コレクション
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 21:43:13
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 1,460 ms
コンパイル使用メモリ 144,556 KB
実行使用メモリ 34,664 KB
最終ジャッジ日時 2024-05-07 18:43:51
合計ジャッジ時間 2,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 11 ms
17,024 KB
testcase_14 AC 16 ms
25,600 KB
testcase_15 AC 14 ms
22,400 KB
testcase_16 AC 7 ms
12,032 KB
testcase_17 AC 11 ms
17,648 KB
testcase_18 AC 19 ms
32,804 KB
testcase_19 AC 16 ms
26,880 KB
testcase_20 AC 9 ms
12,544 KB
testcase_21 AC 8 ms
11,392 KB
testcase_22 AC 14 ms
22,272 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 20 ms
34,656 KB
testcase_25 AC 21 ms
34,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<iomanip>
#include<math.h>
#include<complex>
#include<queue>
#include<deque>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<functional>
#include<assert.h>
#include<numeric>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
typedef long long ll;
typedef pair<int,int> pint;
typedef pair<ll,int> pli;
const int inf=1e9+7;
const ll longinf=1LL<<60 ;
const ll mod=1e9+7 ;


int main(){
	int n;
	cin>>n;
	ll a[n],b[n];
	rep(i,n)cin>>a[i]>>b[i];
	vector<int> ord(n);
	iota(ord.begin(),ord.end(),0);
	sort(ord.begin(),ord.end(),[&](auto x,auto y){
		return b[x]==b[y] ? a[x]>a[y] : b[x]>b[y];
		});
	ll dp[n+1][n+1];
	rep(i,n+1)rep(j,n+1)dp[i][j]=longinf;
	dp[0][0]=0;
	rep(i,n)rep(j,n){
		int idx=ord[i];
		dp[i+1][j+1]=min(dp[i][j]+a[idx]+b[idx]*j,dp[i+1][j+1]);
		dp[i+1][j]=min(dp[i+1][j],dp[i][j]);
		dp[i+1][j+1]=min(dp[i+1][j+1],dp[i][j+1]);
	}
	int m;
	if(n%3==0)m=n/3*2;
	if(n%3==1)m=n/3*2+1;
	if(n%3==2)m=n/3*2+2;
	cout<<dp[n][m]<<endl;
	return 0;
}
0