이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define all(aa) aa.begin(), aa.end()
#define endl ("\n")
#define pb push_back
typedef long long ll;
const int maxn = 1e5 + 5;
using namespace std;
int n, k;
ll rem, cur, ans = LONG_LONG_MAX;
vector<pair<ll, ll>> v;
vector<ll> u;
ll mindist(pair<ll, ll> p, ll l, ll r){
if( (p.first <= l && l <= p.second ) || (p.first <= r && r <= p.second) )
return 0;
ll ret = min(abs(l - p.first), abs(l - p.second));
ret = min(ret, abs(r - p.first));
ret = min(ret, abs(r - p.second));
return 2*ret;
}
int main(){
cin >> k >> n;
for(int i = 0; i < n; i++){
char c1, c2;
int a, b;
cin >> c1 >> a >> c2 >> b;
if(a < b) swap(a, b);
rem+= a - b;
if(c1 != c2){
rem++;
v.pb({b, a});
u.pb(a), u.pb(b);
}
}
if(k == 2){
for(int l = 0; l < u.size(); l++){
for(int r = l; r < u.size(); r++){
cur = 0;
for(auto p : v){
cur += mindist(p, l, r);
}
ans = min(ans, cur);
}
}
cout << (ans==LONG_LONG_MAX?0:ans) + rem << endl;
} else{
int n = v.size();
cur = rem;
ll rgt = n;
ll lst = 0, lft = 0;
multiset<pair<ll, ll>> come;
multiset<ll> vs;
vector<ll> u;
for(int i = 0; i < n; i++){
come.insert(v[i]);
cur+=2*v[i].first;
u.pb(v[i].first), u.pb(v[i].second);
}
sort(all(u));
sort(all(v));
ans = cur;
for(int i = 0; i < 2*n; i++){
cur += lft*2*(u[i] - lst) - rgt*2*(u[i] - lst);
while(!come.empty() && (*come.begin()).first == u[i]){
pair<ll, ll> p = *come.begin();
vs.insert({p.second});
come.erase(come.find(p));
rgt--;
}
while(!vs.empty() && *vs.begin() == u[i]){
lft++;
vs.erase(vs.begin());
}
ans = min(ans, cur);
lst = u[i];
}
cout << ans << endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
bridge.cpp: In function 'int main()':
bridge.cpp:38:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | for(int l = 0; l < u.size(); l++){
| ~~^~~~~~~~~~
bridge.cpp:39:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for(int r = l; r < u.size(); r++){
| ~~^~~~~~~~~~| # | 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... |