이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* made by amunduzbaev */
#include "bits/stdc++.h"
using namespace std;
//~ #include <ext/pb_ds/assoc_container.hpp>
//~ #include <ext/pb_ds/tree_policy.hpp>
//~ using namespace __gnu_pbds;
//~ template<class T> using oset = tree<T,
//~ null_type, less_equal<T>, rb_tree_tag,
//~ tree_order_statistics_node_update>;
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define ub upper_bound
#define lb lower_bound
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(),x.rend()
#define NeedForSpeed ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define vv vector
#define mem(arr, v) memset(arr, v, sizeof arr)
#define int long long
#define degub(x) cout<<#x<<" : "<<x<<"\n"
#define GG cout<<"here"<<endl;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef vector<int> vii;
typedef vector<pii> vpii;
template<class T> bool umin(T& a, const T& b) { return a > b ? a = b, true : false; }
template<class T> bool umax(T& a, const T& b) { return a < b ? a = b, true : false; }
template<int sz> using tut = array<int, sz>;
void usaco(string s) { freopen((s+".in").c_str(),"r",stdin);
freopen((s+".out").c_str(),"w",stdout); NeedForSpeed }
const int N = 2e5+5;
const int mod = 1e9+7;
const ll inf = 1e18;
const ld Pi = acos(-1);
#define MULTI 0
int n, m, k, s, t, q, ans, res, a[N];
//~ struct tree{
int tree[4*N];
void upd(int l, int r, int v, int lx = 0, int rx = n, int x = 1){
if(lx > r || rx < l) return;
if(lx >= l && rx <= r) { tree[x] += v; return; }
int m = (lx + rx)>>1;
upd(l, r, v, lx, m, x<<1), upd(l, r, v, m+1, rx, x<<1|1);
} int get(int i, int lx = 0, int rx = n, int x = 1){
if(lx == rx) return tree[x];
int m = (lx + rx)>>1;
if(i <= m) return tree[x] + get(i, lx, m, x<<1);
else return tree[x] + get(i, m+1, rx, x<<1|1);
}
//~ };
void solve(int t_case){
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i], upd(i, i, a[i]);
int l = 1, r = n;
while(a[l-1] < a[l]) l++;
while(a[r] > a[r+1]) r--;
while(l <= r){
int inc = min(get(l-1) - get(l) + 1, get(r+1) - get(r) + 1);
res += inc;
upd(l, r, inc);
while(get(l-1) < get(l)) l++;
while(get(r) > get(r+1)) r--;
}
if(l - 1 == r && get(l) == get(r)) res++;
cout<<res<<"\n";
}
signed main(){
NeedForSpeed
if(MULTI){
int t; cin>>t;
for(int t_case = 1; t_case <= t; t_case++) solve(t_case);
} else solve(1);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'void usaco(std::string)':
Main.cpp:38:31: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
38 | void usaco(string s) { freopen((s+".in").c_str(),"r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:39:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
39 | freopen((s+".out").c_str(),"w",stdout); NeedForSpeed }
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |