# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
41408 | fest | Palembang Bridges (APIO15_bridge) | C++14 | 90 ms | 1640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// fest
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define y1 dasdasfasfas
#define x1 wqdadfasfasfas
#define All(c) c.begin(), c.end()
#define SZ(A) (int((A).size()))
#define umap unordered_map
#define FILENAME ""
#define __ fflush(stdout)
typedef long long ll;
typedef long double ld;
using namespace std;
void FREOPEN() {
#ifdef COMP
freopen(".in", "r", stdin);
freopen("2.out", "w", stdout);
#else
freopen(FILENAME".in", "r", stdin);
freopen(FILENAME".out", "w", stdout);
#endif
}
inline double Time() {return (clock() * 1.0) / CLOCKS_PER_SEC; }
const int N = 200500, inf = 1e9 + 1, MOD = (int)1e9 + 7;
char CH[N];
const ll INF = 1e18;
const int dx[] = {1, -1, 0, 0, -1, 1, -1, 1};
const int dy[] = {0, 0, 1, -1, -1, 1, 1, -1};
vector<int> f, s;
ll check(int p) {
ll ret = 0;
for (auto i : f) ret += abs(i - p);
for (auto i : s) ret += abs(i - p);
return ret;
}
int main() {
int k, n;
cin >> k >> n;
ll un = 0;
for (int i = 1; i <= n; i++) {
char t1, t2;
int p1, p2;
scanf("\n%c %d %c %d", &t1, &p1, &t2, &p2);
if (t2 == 'A') swap(t1, t2), swap(p1, p2);
if (t1 == t2) {
un += abs(p2 - p1);
continue;
}
f.pb(p1);
s.pb(p2);
}
sort(All(f)), sort(All(s));
int l = 0;
int r = inf;
while (r - l > 1) {
int mid = (l + r) / 2;
if (check(mid) > check(mid + 1)) l = mid;
else r = mid;
}
cout << un + SZ(f) + min(check(l), check(r));
return 0;
}
컴파일 시 표준 에러 (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... |