# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15861 | myungwoo | Palembang Bridges (APIO15_bridge) | C++14 | 0 ms | 2804 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define MAXN 100005
#define pb push_back
#define sz(v) ((int)(v).size())
#define all(v) (v).begin(), (v).end()
typedef long long lld;
int K, N, M;
struct Z{
int a, b;
} A[MAXN];
lld proc(vector <int> &arr)
{
if (arr.empty()) return 0;
lld ret = 0;
sort(all(arr));
int x = arr[sz(arr)/2];
for (int t: arr) ret += abs(t - x);
return ret;
}
int main()
{
scanf("%d%d", &K, &M);
vector <int> arr;
lld def = 0;
while (M--){
char p, q; int a, b;
scanf(" %c%d %c%d", &p, &a, &q, &b);
if (p == q){
def += abs(a-b);
continue;
}
def++;
if (a > b) swap(a, b);
A[++N] = {a, b};
}
sort(A+1, A+N+1, [](const Z &a, const Z &b){
return a.a+a.b < b.a+b.b;
});
lld ans = 1e18;
for (int i=0;i<N;i++){
vector <int> arr1, arr2;
for (int j=1;j<=N;j++)
if (j <= i)
arr1.pb(A[j].a), arr1.pb(A[j].b);
else
arr2.pb(A[j].a), arr2.pb(A[j].b);
lld val = def + proc(arr1) + proc(arr2);
ans = min(ans, val);
if (K == 1) break;
}
printf("%lld\n", ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |