#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
#define int long long
#define lgm cin.tie(0)->sync_with_stdio(0);
#define be(x) x.begin(),x.end()
#define v vector
#define f first
#define s second
const int mod = 1e9+7;
signed main() {
lgm;
int n,k;
cin >> k>>n;
v<pair<int,int>> a(n),b(n);
for (int i=0;i<n;i++) {
int p;
char c;
cin >> c >> p;
a[i]={p,c-'A'};
cin >> c >> p;
b[i]={p,c-'A'};
}
int ans=1e9,cur;
if (k == 1) {
for (int i=0;i<n;i++) {
cur=0;
for (int j=0;j<n;j++) {
if (a[j].s==b[j].s) {
cur+=abs(a[j].f-b[j].f);
} else {
cur+=1+abs(a[j].f-i)+abs(b[j].f-i);
}
}
ans=min(ans,cur);
}
} else {
for (int i=0;i<n;i++) {
for (int j=i+1;j<n;j++) {
cur=0;
for (int k=0;k<n;k++) {
if (a[k].s==b[k].s) {
cur+=abs(a[k].f-b[k].f);
} else {
cur+=1+min(abs(a[k].f-i)+abs(b[k].f-i),abs(a[k].f-j)+abs(b[k].f-j));
}
}
ans=min(ans,cur);
}
}
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
2 ms |
500 KB |
Output is correct |
4 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |