# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
432822 | frodakcin | 모임들 (IOI18_meetings) | C++11 | 5552 ms | 8312 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <stack>
template<typename T> bool ckmin(T& a, const T& b) {return b<a?a=b,1:0;}
template<typename T> bool ckmax(T& a, const T& b) {return b>a?a=b,1:0;}
using ll = long long;
const ll INF = 0x3f3f3f3f3f3f3f3f;
ll brute(const std::vector<int>& H, int L, int R)
{
std::vector<ll> bl, br;
bl.reserve(R-L), br.reserve(R-L);
int len = R-L;
{
std::stack<int> s; s.push(L-1);
int ctr=0;
ll cur=0;
for(int i=L;i<R;++i)
{
cur += H[i];
for(;s.size()>1 && H[i] > H[s.top()];)
{
int pr=s.top();
s.pop();
cur += (ll)(pr-s.top())*(H[i]-H[pr]);
}
bl.push_back(cur);
s.push(i);
}
}
{
std::stack<int> s; s.push(R);
int ctr=0;
ll cur=0;
for(int i=R-1;i>=L;--i)
{
cur += H[i];
for(;s.size()>1 && H[i] > H[s.top()];)
{
int pr=s.top();
s.pop();
cur += (ll)(s.top()-pr)*(H[i]-H[pr]);
}
br.push_back(cur);
s.push(i);
}
}
ll ans=INF;
for(int i=0;i<len;++i)
ckmin(ans, bl[i]+br[len-1-i]-H[L+i]);
return ans;
}
std::vector<long long> minimum_costs(std::vector<int> H, std::vector<int> L,
std::vector<int> R) {
int N = H.size();
int Q = L.size();
std::vector<ll> C(Q);
for (int j = 0; j < Q; ++j)
C[j]=brute(H, L[j], R[j]+1);
return C;
}
컴파일 시 표준 에러 (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... |