이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
vector<ii> v;
ll get(int x) {
ll ret = 0;
for(ii a : v) ret += abs(a.first - x) + abs(a.second - x);
return ret;
}
int main(int argc, char const *argv[]) {
#ifdef LOCAL_TESTING
freopen("in", "r", stdin);
#endif
int k, n; cin >> k >> n;
ll pre = 0;
vector<int> pos;
for(int i = 0; i < n; i++) {
char p, q; int s, t;
cin >> p >> s >> q >> t;
if(p == q) pre += abs(s - t);
else v.push_back({s, t}), pos.push_back(s), pos.push_back(t);
}
int m = pos.size();
sort(pos.begin(), pos.end());
ll mn = get(pos[m >> 1]);
if(m/2+1 < m) mn = min(mn, get(pos[m/2 + 1]));
cout << mn + v.size() + pre << endl;
}
# | 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... |