# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
790681 | peteza | 모임들 (IOI18_meetings) | C++14 | 5554 ms | 201600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <iostream>
int dp[5005][5005];
std::vector<long long> minimum_costs(std::vector<int> H, std::vector<int> L,
std::vector<int> R) {
int Q = L.size();
std::vector<long long> C(Q);
//std::cout << "HELLO";
for(int i=0;i<H.size();i++) {
int cm = H[i];
for(int j=i;j>=0;j--) {
cm = std::max(cm, H[j]);
dp[i][j] = cm;
}
cm = H[i];
for(int j=i;j<H.size();j++) {
cm = std::max(cm, H[j]);
dp[i][j] = cm;
}
}
for (int j = 0; j < Q; ++j) {
long long curans = __LONG_LONG_MAX__;
for(int k=L[j];k<=R[j];k++) {
long long csum = 0;
for(int i=L[j];i<=R[j];i++)
csum += dp[i][k];
curans = std::min(curans, csum);
}
C[j] = curans;
}
return C;
}
/*
4 2
2 4 3 5
0 2
1 3
*/
컴파일 시 표준 에러 (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... |