# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
60626 | dukati8 | Palembang Bridges (APIO15_bridge) | C++14 | 436 ms | 13420 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for (int i=a; i<int(b); i++)
#define all(x) x.begin(),x.end()
vector <pair<long long,long long> > travels;
vector <long long> points;
long long cost(long long point){
long long ans=0;
for (auto a:travels) {
long long c,d;
c=a.first;
d=a.second;
ans+=abs(point-c) + abs(point-d);
}
return ans;
}
long long cost (long long point1, long long point2) {
long long ans=0;
for (auto a:travels) {
long long c,d;
c=a.first;
d=a.second;
ans+=min(abs(point1-c) + abs(point1-d),abs(point2-c) + abs(point2-d));
}
return ans;
}
int main() {
unordered_set<long long> unip;
int k,n;
# | 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... |