# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1011326 | sadeep | Horses (IOI15_horses) | C++17 | 32 ms | 8540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
int N;
int *X;
int *Y;
int max(int a,int b) { if (a>b) return a; return b; }
const int MAX_HORSES = 1001;
int cache[12][MAX_HORSES + 1];
int dpProfitAtYearWithHorsesLeft(int year, int horsesLeft) {
if (year == -1) {
if (horsesLeft == 1)return 0;
return -1;
}
if (cache[year][horsesLeft] != -2)return cache[year][horsesLeft];
int maxSoFar = -1;
for (int lastYearHorseCount = 0; lastYearHorseCount < MAX_HORSES; lastYearHorseCount++) {
int thisYearHorseCountBeforeSell = lastYearHorseCount * X[year];
if (thisYearHorseCountBeforeSell < horsesLeft)continue;
int horsesToSell = thisYearHorseCountBeforeSell - horsesLeft;
int profitUptoLastYear = dpProfitAtYearWithHorsesLeft(year - 1, lastYearHorseCount);
if (profitUptoLastYear < 0)continue;
int profit = horsesToSell * Y[year] + dpProfitAtYearWithHorsesLeft(year - 1, lastYearHorseCount);
maxSoFar = max(maxSoFar, profit);
}
cache[year][horsesLeft] = maxSoFar;
return cache[year][horsesLeft];
}
int init(int n, int xx[], int yy[]) {
for (auto &c: cache)for (int &i: c)i = -2;
N = n;
X = xx;
Y = yy;
dpProfitAtYearWithHorsesLeft(0, 0);
int maxSoFar = 0;
for(int i=0; i<MAX_HORSES; i++){
maxSoFar = max(maxSoFar, dpProfitAtYearWithHorsesLeft(N, i));
}
return maxSoFar;
}
int updateX(int pos, int val) {
return 0;
}
int updateY(int pos, int val) {
return 0;
}
컴파일 시 표준 에러 (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... |