이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* Bismillahir Rahmanir Rahim */
#include <bits/stdc++.h>
using namespace std;
const int N = 105;
const long long oo = 1e18;
int k, n;
long long pos[N][2];
char fk[N][2];
int main(){
cin >> k >> n;
for(int i = 1; i <= n; i++){
for(int j = 0; j <= 1; j++){
cin >> fk[i][j] >> pos[i][j];
}
}
long long ret = oo;
for(int i = 1; i <= n; i++){
for(int a = 0; a <= 1; a++){
for(int j = 1; j <= n; j++){
for(int b = 0; b <= 1; b++){
long long ans = 0;
for(int f = 1; f <= n; f++){
if(fk[f][0] == fk[f][1]){
ans += abs(pos[f][1] - pos[f][0]);
continue;
}
long long aa = 1LL + abs(pos[f][0] - pos[i][a]) + abs(pos[f][1] - pos[i][a]);
long long bb = 1LL + abs(pos[f][0] - pos[j][b]) + abs(pos[f][1] - pos[j][b]);
ans += min(aa, bb);
}
ret = min(ret, ans);
}
}
}
}
cout << ret << endl;
return 0;
}
# | 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... |