This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template <class T>
using indexedset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long ll;
int main(){
int k, n;
cin >> k >> n;
vector<pair<ll, ll>> deals;
ll ans = 0;
for (int i = 0; i < n; i++){
char a, b;
ll c, d;
cin >> a >> c >> b >> d;
if (a == b) ans += max(d,c)-min(d,c);
else deals.push_back({min(c,d), max(c,d)});
}
if (k == 1){
vector<ll> v;
for (auto x : deals) v.push_back(x.first), v.push_back(x.second);
sort(v.begin(), v.end());
ll med = v[v.size()/2];
for (ll x : v) ans += abs(x-med);
ans += deals.size();
}
cout << ans << 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... |