이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rail.h"
#include <bits/stdc++.h>
#define _USE_MATH_DEFINES
#define endl "\n"
#define sp " "
#define f1(i, x) for(auto &i : x)
#define f2(i, x) for(ll i = 0; i < x; i++)
#define raya() cout << endl << "====================================" << endl
using namespace std;
typedef long long ll;
void findLocation(int N, int first, int location[], int stype[]){
vector<pair<int, int>> a;
for(int i = 1; i < N; i++) a.push_back({getDistance(0, i), i});
sort(a.begin(), a.end());
int f = a[0].second;
set<int> b;
for(int i = 0; i < N; i++)
if(getDistance(f, i) == abs(getDistance(0, f) - getDistance(0, i)) and i != f)
b.insert(i);
for(int i = 0; i < N; i++){
if(b.count(i)){
location[i] = first - getDistance(i, f) + getDistance(0, f) ;
stype[i] = 1;
} else {
location[i] = first + getDistance(0, i);
stype[i] = 2;
}
}
}
# | 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... |