Submission #1035276

#TimeUsernameProblemLanguageResultExecution timeMemory
1035276May27_thFinancial Report (JOI21_financial)C++17
12 / 100
4040 ms8016 KiB
#include<bits/stdc++.h>
using namespace std;
#define i64 long long
#define mp make_pair
#define all(x) (x).begin(), (x).end()
const int MAXN = 300005;
const int INF = 1e9 + 7;
int N, D, a[MAXN], f[MAXN], r[MAXN], from[MAXN];
int main(){
  ios_base::sync_with_stdio(false); cin.tie(0);
  cin >> N >> D;
  for (int i = 1; i <= N; i ++) cin >> a[i];
  stack<int> s; s.push(N + 1); a[N + 1] = INF, r[N + 1] = N + 1, from[N + 1] = N + 1;  
  int ans = 0;
  for (int i = N; i >= 1; i --) {
    while (!s.empty() && a[s.top()] <= a[i]) s.pop();
    r[i] = s.top();
    int greater = 1;
    f[i] = f[s.top()] + 1;
    from[i] = s.top();
    for (int j = s.top() + 1; j <= from[s.top()]; j ++) {
      if (greater >= D) break;
      if (a[j] > a[i]) {
        if (f[j] + 1 > f[i]) {
          from[i] = j;
          f[i] = f[j] + 1;
        }
      }
      else greater = 0;
      greater += (a[j] > a[i]);
    }
    ans = max(ans, f[i]);
    s.push(i);
    // cout << i << " " << from[i] << " " << f[i] << "\n";
  }
  cout << ans << "\n";
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...