# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
849991 | Ahmed57 | Uplifting Excursion (BOI22_vault) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int dp[2][505000*2+1],arr[301],br = 505000,n,m;
signed main(){
ios_base::sync_with_stdio(false);cin.tie(0);
cin>>m>>n;
for(int i = 0;i<2*m+1;i++){
cin>>arr[i];
}
long long l = 5050000
for(int i = 2*m+1;i>=0;i--){
for(int j = 0;j<=505000*2-(i-(2*m+1))*100;j++){
if(i==2*m+1){
if(j==n+br){
dp[i&1][j] = 0;
}else{
dp[i&1][j] = -1e9;
}
continue;
}
int ans = -1e9;
for(int e = 0;e<=arr[i];e++){
if(j+e*(i-m)>505000*2)break;
if(j+e*(i-m)<0)continue;
ans = max(ans,dp[!(i&1)][j+e*(i-m)]+e);
}
dp[i&1][j] = ans;
}
}
long long vl = dp[0][505000];
if(vl<0)cout<<"impossible\n";
else cout<<vl<<endl;
}