Submission #488331

#TimeUsernameProblemLanguageResultExecution timeMemory
488331cfalasFinancial Report (JOI21_financial)C++14
0 / 100
1 ms588 KiB
#include<bits/stdc++.h> using namespace std; #define mp make_pair #define INF 10000000 #define MOD 1000000007 #define MID ((l+r)/2) #define HASHMOD 2305843009213693951 #define ll long long #define ull unsigned long long #define F first #define S second typedef pair<ll, ll> ii; typedef pair<ii, int> iii; typedef vector<int> vi; typedef vector<ii> vii; typedef map<int, int> mii; #define EPS 1e-6 #define FOR(i,n) for(int i=0;i<((int)(n));i++) #define FORi(i,a,b) for(int i=((int)(a));i<((int)(b));i++) #define FOA(v, a) for(auto v : a) vi a, b; int n, k; map<int, int> m; int dp[9000]; int maxx[9000]; int rec(int x, int px){ int ans=0; if(maxx[x]<px) return 0; if(maxx[x] == px && dp[x]!=-1) return dp[x]; FOR(i,k){ int c=0; if(x+i+1>=n) break; if(a[x+i+1]>px) c++; ans = max(ans, c + rec(x+i+1, max(px, a[x+i+1]))); } dp[x] = ans; maxx[x] = min(maxx[x], px); //cout<<x<<" "<<px<<" "<<ans<<endl; return ans; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cin>>n>>k; FOR(i,n+1) maxx[i] = MOD; //FOR(i,n) FOR(j,n) dp[i][j] = -1; FOR(i,n+1) dp[i] = -1; a.resize(n); FOR(i,n) cin>>a[i]; int cnt=0; set<int> all; FOR(i,n) all.insert(a[i]); FOA(v, all) m[v] = ++cnt; FOR(i,n) a[i] = m[a[i]]; //FOR(i,n) cout<<a[i]<<" "; //cout<<endl; int maxa = 0; FOR(i,n){ maxa = max(maxa, rec(n-i-1, a[n-i-1])+1); FOR(j,n) maxa = max(maxa, dp[j]); } cout<<maxa<<endl; }
#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...