# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
410831 | EJOI2019Andrew | Roller Coaster Railroad (IOI16_railroad) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include<bits/stdc++.h>
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
//set.upper_bound(element) - iterator pointing to element greater than the given element
// | ^
//__builtin_popcount(x)
using namespace std;
long long plan_roller_coaster(vector<int> s,vector<int> t) {
int n=(int)s.size();
ll res=1e18;
vi a;
for(int i=0;i<n;i++)
a.pb(i);
do{
ll G=0,c=0;
for(int i=0;i<n;i++)
{
if(c>s[a[i]])
G+=(c-s[a[i]]);
}
c=t[a[i]];
res=min(res,G);
}while(next_permutation(a.begin(),a.end()));
return res;
}