# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
425411 | ngrace | Roller Coaster Railroad (IOI16_railroad) | C++14 | 275 ms | 56860 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include <vector>
#include <iostream>
#include <limits.h>
using namespace std;
#define v vector
int N;
v<int> S;
v<int> T;
v<v<long long>> memo;
long long solve(int mask, int last){
if(memo[mask][last]!=-1) return memo[mask][last];
v<int> options;
for(int i=0;i<N;i++){
if(((1<<i) & mask) != (1<<i)){
options.push_back(i);
}
}
int cur_speed=(last==N)?1 : T[last];
if(options.size()==0) return memo[mask][last] = 0;
else{
long long out=LLONG_MAX;
for(int i:options){
long long length = (cur_speed<=S[i])?0 : (cur_speed - S[i]);
int new_mask = (mask | (1<<i));
long long take = solve(new_mask, i);
out=min(out, take+length);
}
return memo[mask][last] = out;
}
}
long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) {
N=s.size();
for(int i:s)S.push_back(i);
for(int i:t)T.push_back(i);
if(N<=16) {
memo=v<v<long long>>((1<<(N+1))+10,v<long long>(N+1,-1));
return solve(0,N);
}
}
컴파일 시 표준 에러 (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... |