# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1084499 | _rain_ | Discharging (NOI20_discharging) | C++14 | 78 ms | 16124 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define fixbug false
const ll INF = (ll)4e18+7;
const int maxn = 1e6;
ll a[maxn+2] ;
int n;
namespace subtask1{
bool check(){
return n <= 1500;
}
const int N = 1500;
ll f[N+2] , sum[N+2] = {};
void main_code(){
for (int i = 1; i <= n; ++i) f[i] = INF , sum[i] = INF;
for (int i = 1; i <= n; ++i){
ll mx = a[i];
for (int j = i; j >= 1; --j){
mx = max(mx , a[j]);
f[i] = min(f[i] , f[j - 1] + mx * (n - j + 1));
}
}
cout << f[n];
return;
}
}
namespace subtask2{
bool check(){
return true;
}
const int N = 1e6;
ll f[N+2];
#define double long double
struct Line{
ll a , b;
Line(ll a , ll b) : a(a) , b(b) {};
ll F(ll x){
return a * x + b;
}
};
struct Hull{
Line X;
double slope;
};
double get_slope(Line a , Line b){
return (double)(b.b - a.b) / (a.a - b.a);
}
vector<Hull> convex;
void addline(Line x){
int n = convex.size();
while (n > 1 && get_slope(convex[n - 2].X , x) <= convex[n-1].slope){
convex.pop_back();
--n;
}
if (!convex.size()) convex.push_back({x , LLONG_MIN});
else convex.push_back({x , get_slope(convex[n - 1].X,x)});
return;
}
ll Find(ll x , int t){
int l = 0 , r = convex.size() - 1 , p = 0;
while (l<=r){
int m = l + r >> 1;
if (convex[m].slope <= x){
l = m + 1;
p = m;
}
else r = m - 1;
}
if (t&&fixbug){
cout << convex[p].X.a << ' ' << convex[p].X.b << ' ' << p << '\n';
for (auto& x : convex) cout << x.X.a << ' ' << x.X.b << ' ' << x.slope << '\n';
}
return convex[p].X.F(x);
}
void add(ll a , ll b){
addline(Line(a,b));
return;
}
void main_code(){
for (int i = 1; i <= n; ++i){
add(-i , f[i-1]);
f[i] = Find(a[i],i==2) + a[i]*n + a[i];
int j = i;
while (j <= n && a[i] >= a[j]){
++j;
f[j] = f[i];
}
i = j - 1;
if (fixbug){
cout << i << ' ' << f[i] << '\n';
}
}
cout << f[n];
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
#define name "main"
if (fopen(name".inp","r")){
freopen(name".inp","r",stdin);
freopen(name".out","w",stdout);
}
cin >> n;
for (int i = 1; i <= n; ++i) cin >> a[i];
subtask2::main_code();
exit(0);
}
컴파일 시 표준 에러 (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... |