結果
問題 | No.798 コレクション |
ユーザー | ttttan |
提出日時 | 2019-03-16 19:15:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 801 bytes |
コンパイル時間 | 1,430 ms |
コンパイル使用メモリ | 167,028 KB |
実行使用メモリ | 34,688 KB |
最終ジャッジ日時 | 2024-07-01 22:38:14 |
合計ジャッジ時間 | 2,481 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 16 ms
17,024 KB |
testcase_14 | AC | 25 ms
25,600 KB |
testcase_15 | AC | 22 ms
22,272 KB |
testcase_16 | AC | 11 ms
12,032 KB |
testcase_17 | AC | 16 ms
17,536 KB |
testcase_18 | AC | 33 ms
32,768 KB |
testcase_19 | AC | 26 ms
26,752 KB |
testcase_20 | AC | 11 ms
12,416 KB |
testcase_21 | AC | 10 ms
11,264 KB |
testcase_22 | AC | 21 ms
22,272 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 32 ms
34,688 KB |
testcase_25 | AC | 34 ms
34,688 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll,ll> pll; ll inf=1000000000000000000; int main(){ ll n;cin>>n; ll a[n],b[n]; vector<pll> v; for(ll i=0;i<n;i++){ cin>>a[i]>>b[i]; v.push_back(make_pair(b[i],a[i])); } sort(v.begin(),v.end(),greater<pll>()); ll u; if(n%3==0)u=n/3*2; else if(n%3==1)u=(n-1)/3*2+1; else u=(n+1)/3*2; ll dp[n][n+1]; for(ll i=0;i<n;i++)fill(dp[i],dp[i]+n+1,inf); dp[0][0]=0; dp[0][1]=v[0].first; for(ll i=1;i<n;i++){ for(ll j=0;j<=i+1;j++){ dp[i][j]=dp[i-1][j]; if(j==0)continue; dp[i][j]=min(dp[i][j],dp[i-1][j-1]+v[i].second+v[i].first*(j-1)); } } cout<<dp[n-1][u]<<endl; //for(ll i=0;i<n;i++){ //for(ll j=0;j<=i+1;j++)cout<<dp[i][j]<<" "; //cout<<endl; //} }