Submission #902515

#TimeUsernameProblemLanguageResultExecution timeMemory
902515qinFinancial Report (JOI21_financial)C++17
0 / 100
4099 ms12976 KiB
#include <bits/stdc++.h> #define fi first #define se second #define ssize(x) int(x.size()) #define pn printf("\n") #define all(x) x.begin(),x.end() using namespace std; typedef long long ll; typedef pair<int, int> pii; int inf = 2e09; ll infll = 2e18; int base = 1; struct seg{ vector<pii> t; void init(int n){ while(base < n) base <<= 1; t.resize(base<<1); } void update(int i, int val, int time){ t[i] = pii(val, time); } void zero(int l, int r, int time){ for(int i = l; i <= r; ++i) if(t[i].se < time) t[i] = pii(0, inf); } int query(int l, int r){ int ret = 0; for(int i = l; i <= r; ++i) ret = max(t[i].fi, ret); return ret; } void change_time(int l, int r, int time){ for(int i = l; i <= r; ++i) if(t[i].se < time) t[i].se = time; } void check_time(int time){ for(int i = 1; i <= base; ++i) if(t[i].se < time) t[i] = pii(0, inf); } }; void answer(){ int n, d; scanf("%d%d", &n, &d); set<int> sc; vector<int> t(n+1); for(int i = 1; i <= n; ++i) scanf("%d", &t[i]), sc.emplace(t[i]); unordered_map<int, int> mp; int it = 0; for(int u : sc) mp[u] = ++it; for(int i = 1; i <= n; ++i) t[i] = mp[t[i]]; seg seg; seg.init(n); int result = 0; for(int i = 1; i <= n; ++i){ int mn = inf; for(int j = i-1; j >= max(1, i-d); --j) mn = min(mn, t[i]); if(mn != inf) seg.zero(1, mn-1, i-d), seg.change_time(mn, base, i-d); if(i != n) seg.update(t[i], seg.query(1, t[i]-1)+1, i); else result = max(seg.query(1, t[i]-1)+1, seg.query(t[i], base)); //~ for(int j = 1; j <= n; ++j) printf("%d %d, ", seg.t[j].fi, seg.t[j].se); //~ pn; } printf("%d\n", result); } int main(){ int T = 1; for(++T; --T; ) answer(); return 0; }

Compilation message (stderr)

Main.cpp: In function 'void answer()':
Main.cpp:37:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   37 |   int n, d; scanf("%d%d", &n, &d);
      |             ~~~~~^~~~~~~~~~~~~~~~
Main.cpp:40:36: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   40 |   for(int i = 1; i <= n; ++i) scanf("%d", &t[i]), sc.emplace(t[i]);
      |                               ~~~~~^~~~~~~~~~~~~
#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...