# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
297227 | TheRedstar | Ancient Books (IOI17_books) | C++11 | 250 ms | 25936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "books.h"
#include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
long long minimum_walk(vi p, int s) {
int N=p.size();
long long total_distance=0;
vi cmin; //cycle min and max positions
vi cmax;
int C=0;//number of cycles
vector<bool> visited(N,false);
for(int i=0; i<N; i++) {
if(!visited[i]) {
//cout << "new cycle from " << i << endl;
visited[i]=true;
cmin.push_back(i); //create new cycle
cmax.push_back(i);
total_distance+=abs(i-p[i]);
for(int current=p[i]; current!=i; current=p[current]) { //add other points
cmin[C]=min(cmin[C],current);
cmax[C]=max(cmax[C],current);
total_distance+=abs(current-p[current]);
visited[current]=true;
}
C++;
}
}
//cout << total_distance <<" for walking with books, cycles: " << C << endl;
vector<pair<int,bool>> events={{s,0},{s,1}}; //0 for start, 1 for end
for(int c=0; c<C; c++) {
if(cmin[c]!=cmax[c]) {
events.push_back({cmin[c],0});
events.push_back({cmax[c],1});
}
}
sort(events.begin(),events.end());
int active_c=0;
for(int e=0; e<events.size(); e++) {
if(get<1>(events[e])==false) {//new
active_c++;
} else {//remove
active_c--;
if(active_c==0 and e<events.size()-1) {//there is a next event which needs to be walked to
total_distance+=2*(events[e+1].first-events[e].first);
}
}
}
return total_distance;
}
컴파일 시 표준 에러 (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... |