# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
588662 | peuch | Uplifting Excursion (BOI22_vault) | C++17 | 110 ms | 16320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
const long long MAXN = 101;
const long long MAXA = 101 * 100 * 101;
const long long INF = 1e18;
const long long HALF = MAXA / 2;
long long m;
long long l;
long long v[2 * MAXN];
long long dp[2][MAXA];
int main(){
scanf("%lld %lld", &m, &l);
long long sum = 0;
long long cnt = 0;
multiset<pair<long long, long long> > auxMoedas;
for(long long i = -m; i <= m; i++){
scanf("%lld", &v[i + m]);
sum += v[i + m] * i;
cnt += v[i + m];
for(int j = 0; j < v[i + m]; j++)
auxMoedas.insert(make_pair(i, 1));
}
vector<pair<long long, long long> > moedas;
while(!auxMoedas.empty()){
pair<int, int> aux = *auxMoedas.begin();
auxMoedas.erase(auxMoedas.begin());
if(!moedas.empty() && moedas.back().first == aux.first){
if(!auxMoedas.empty() && auxMoedas.begin()->first == aux.first){
aux.first *= 2;
aux.second += auxMoedas.begin()->second;
auxMoedas.erase(auxMoedas.begin());
auxMoedas.insert(aux);
continue;
}
}
moedas.push_back(aux);
}
if(l + HALF >= MAXA || l + HALF < 0){
printf("impossible\n");
return 0;
}
for(long long j = 0; j < MAXA; j++)
dp[1][j] = INF;
dp[1][HALF] = 0;
for(auto val : moedas){
// printf("%lld %lld\n", val.first, val.second);
swap(dp[0], dp[1]);
for(long long j = 0; j < MAXA; j++){
dp[1][j] = dp[0][j];
if(j - val.first < MAXA && j - val.first >= 0) dp[1][j] = min(dp[1][j], dp[0][j - val.first] + val.second);
}
}
if(dp[1][sum - l + HALF] == INF) printf("impossible\n");
else printf("%lld\n", cnt - dp[1][sum - l + HALF]);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |