# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
295284 | Saboon | 모임들 (IOI18_meetings) | C++17 | 1090 ms | 3200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll inf = 1e18;
const int maxn = 5e3 + 10;
ll dp[maxn];
vector<ll> minimum_costs(vector<int> H, vector<int> L, vector<int> R) {
int n = H.size(), Q = L.size();
vector<ll> C(Q);
for (int j = 0; j < Q; j++){
C[j] = inf;
stack<pair<int,int>> S;
ll Sum = 0;
for (int i = L[j]; i <= R[j]; i++){
int cnt = 1;
while (!S.empty() and S.top().first <= H[i]){
Sum -= 1LL*S.top().first*S.top().second;
cnt += S.top().second;
S.pop();
}
Sum += 1LL*H[i]*cnt;
dp[i] = Sum;
S.push({H[i],cnt});
}
while (!S.empty())
S.pop();
Sum = 0;
for (int i = R[j]; i >= L[j]; i--){
int cnt = 1;
while (!S.empty() and S.top().first <= H[i]){
Sum -= 1LL*S.top().first*S.top().second;
cnt += S.top().second;
S.pop();
}
Sum += 1LL*H[i]*cnt;
C[j] = min(C[j], Sum+dp[i]-H[i]);
S.push({H[i],cnt});
}
}
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... |