| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 25371 | gabrielsimoes | Palembang Bridges (APIO15_bridge) | C++14 | 0 ms | 2024 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
int main()
{
int m, n;
scanf("%d %d", &m, &n);
char a,c;
ll b,d, ans0 = 0;
vector<pll> v;
for (int i = 0; i < n; i++) {
scanf(" %c %lld %c %lld",&a, &b,&c, &d);
if (d < b) swap(b,d);
if (a == c) ans0 += d - b;
else v.push_back(pll(b,d)), ans0++;
}
if (m == 1) {
vector<ll> all;
for (pll& p : v)
all.push_back(p.first), all.push_back(p.second);
sort(all.begin(), all.end());
ll x = all[all.size()/2 - 1];
for (ll y : all)
ans0 += abs(y - x);
printf("%lld\n", ans0);
return 0;
}
}
컴파일 시 표준 에러 (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... | ||||
