# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1022137 | amirhoseinfar1385 | Roller Coaster Railroad (IOI16_railroad) | C++17 | 94 ms | 18880 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include<bits/stdc++.h>
using namespace std;
vector<int>allind;
long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) {
int n = (int) s.size();
vector<pair<long long ,long long>>allt,alls;
int now=0;
for(auto x:s){
alls.push_back(make_pair(x,now));
now++;
}
now=0;
for(auto x:t){
allt.push_back(make_pair(x,now));
now++;
}
allt.push_back(make_pair(1,now));
sort(allt.begin(),allt.end());
sort(alls.begin(),alls.end());
long long res=0;
for(int i=0;i<n;i++){
if(allt[i].first==t[alls[i].second]){
swap(allt[i],allt[i+1]);
}
// cout<<allt[i].first<<" "<<alls[i].first<<" "<<allt[i+1].first<<endl;
res+=max(0ll,allt[i].first-alls[i].first);
}
return res;
# | 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... |