# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
736027 | Hydrolyzed | Safety (NOI18_safety) | C++14 | 14 ms | 2456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* AUTHOR : Hydrolyzed~
* SCHOOL : RYW
* TASK : Safety Subtask 4
* ALGO : Dynamic Programming
* DATE : 5 May 2023
* */
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/rope>
#ifndef _DEBUG
// @==== Libary ====@ //
// @================@ //
#endif
using namespace std;
using namespace __gnu_pbds;
using namespace __gnu_cxx;
template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update> ;
// @=== Debugger ===@ //
#ifdef _DEBUG
#include "debug.hpp"
#else
#define dbg(...) 0
#endif
// @================@ //
using ll = long long;
const int MxN = 200020;
ll a[MxN];
struct slope_trick{
multiset<ll> ms_l, ms_r;
ll min_y = 0;
inline void add_line(ll value){
if(ms_l.upper_bound(value) != ms_l.end()){
ms_l.emplace(value);
ms_l.emplace(value);
}
else{
ms_r.emplace(value);
ms_r.emplace(value);
}
ll last = 0;
if(ms_l.size() > ms_r.size()){
last = *ms_l.end();
ms_l.erase(ms_l.end());
ms_r.emplace(last);
}
else if(ms_r.size() > ms_l.size()){
last = *ms_r.begin();
ms_r.erase(ms_r.begin());
ms_l.emplace(last);
}
if(ms_l.size() + ms_r.size() != 2){
min_y += abs(last - value);
}
};
} dp;
inline void solution(){
int n, h;
cin >> n >> h;
assert(h == 0);
for(int i=1; i<=n; ++i){
cin >> a[i];
}
for(int i=1; i<=n; ++i){
dp.add_line(a[i]);
dbg(dp.min_y);
}
cout << dp.min_y;
return ;
}
signed main(){
cin.tie(nullptr)->ios::sync_with_stdio(false);
int q = 1;
// cin >> q;
while(q--){
solution();
cout << "\n";
}
return 0;
}
// https://github.com/MasterIceZ/archive/tree/main/cpp-template
컴파일 시 표준 에러 (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... |
# | 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... |