# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
624726 | moyindavid | 모임들 (IOI18_meetings) | C++17 | 782 ms | 786432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <bits/stdc++.h>
using namespace std;
vector<long long> minimum_costs(vector<int> H, vector<int> L,vector<int> R) {
int n=H.size(),cost[n][n];
for(int i=0;i<n;i++){
cost[i][i]=H[i];
for(int j=i+1;j<n;j++)cost[i][j]=max(cost[i][j-1],H[j]);
}
for(int i=n-1;i>=0;i--){
for(int j=i-1;j>=0;j--)cost[i][j]=max(cost[i][j+1],H[j]);
}
int Q = L.size();
vector<long long> C(Q,3000000000007);
long long left[n][n],right[n][n],temp=0;
for(int i=0;i<n;i++)for(int j=0;j<n;j++){left[i][j]=0;right[i][j]=0;}
for(int i=0;i<n;i++){
left[i][i]=cost[i][i];
for(int k=i-1;k>=0;k--){
left[k][i]=cost[k][i]+left[k+1][i];
}
right[i][i]=cost[i][i];
for(int k=i+1;k<n;k++){
right[k][i]=cost[k][i]+right[k-1][i];
}
}
for (int j = 0; j < Q; ++j) {
for(int i=L[j];i<=R[j];i++){
C[j]=min(C[j],-cost[i][i]+right[R[j]][i]+left[L[j]][i]);
}
}
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... |