이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int nx=5e5+5;
int n, d, T, dpl[nx], dpr[nx], t[nx], lst=1e9, cnt=0, res=1e9;
stack<pair<int, int>> s;
int cost(int l, int r)
{
if (t[l]>T) return 0;
if (t[l]+r-l<=T) return r-l+1;
return T-t[l]+1;
}
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n>>d>>T;
for (int i=1; i<=n; i++) cin>>t[i];
for (int i=1; i<=n; i++) lst=min(lst+1, t[i]), cnt+=(lst<=T), dpl[i]=cnt;
cnt=0;
for (int i=n; i>=1; i--)
{
while (!s.empty()&&t[i]-i<t[s.top().first]-s.top().first) cnt-=cost(s.top().first, s.top().second), s.pop();
if (s.empty()) cnt+=cost(i, n), s.push({i, n});
else cnt+=cost(i, s.top().first-1), s.push({i, s.top().first-1});
dpr[i]=cnt;
res=min(res, dpl[i-1]+dpr[i]);
}
cout<<res;
}
# | 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... |