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>
#define fr first
#define sc second
#define OK puts("OK");
#define pb push_back
#define mk make_pair
#define int long long
using namespace std;
const int inf = (int)1e15 + 7;
const int N = (int)2e5 + 7;
int k,n;
int x,y;
int suma,sumb;
int pos,pos1;
int ca,cb;
int ans = inf,cur;
char ch,ch1;
vector <int> a,b,vec;
int f (int x) {
suma = 0,sumb = 0;
for (int i = 0; i < (int)a.size(); i ++)
suma += abs(a[i] - x),sumb += abs(b[i] - x);
return (suma + sumb + cur + (int)a.size());
}
main () {
cin >> k >> n;
for (int i = 1; i <= n; i ++) {
cin >> ch >> x >> ch1 >> y;
if (ch == ch1) {
cur += abs(x - y);
}
else {
if (ch == 'A') a.pb(x),b.pb(y);
else b.pb(x),a.pb(y);
vec.pb(x);
vec.pb(y);
}
}
sort (a.begin(),a.end());
sort (b.begin(),b.end());
if (k == 1) {
for (int i = 0; i < vec.size(); i ++)
ans = min(ans,f(vec[i]));
ans = min(ans,f(0));
ans = min(ans,f(1e9));
cout << ans << endl;
}
}
/**
Sample 1
1 5
B 0 A 4
B 1 B 3
A 5 B 7
B 2 A 6
B 1 A 7
Sample 2
2 5
B 0 A 4
B 1 B 3
A 5 B 7
B 2 A 6
B 1 A 7
**/
Compilation message (stderr)
bridge.cpp:32:8: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main () {
^
bridge.cpp: In function 'int main()':
bridge.cpp:52:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < vec.size(); i ++)
~~^~~~~~~~~~~~
# | 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... |