Submission #819256

#TimeUsernameProblemLanguageResultExecution timeMemory
819256SteGGFinancial Report (JOI21_financial)C++17
14 / 100
4069 ms3600 KiB
#include <bits/stdc++.h> #define int long long using namespace std; void open(){ if(fopen("input.inp", "r")){ freopen("input.inp", "r", stdin); //freopen("output.out", "w", stdout); } } const int maxn = 3e5 + 5; const int inf = 1e9 + 7; int n, d; int arr[maxn]; int dp[maxn]; signed main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); open(); cin >> n >> d; for(int i = 1; i <= n; i++){ cin >> arr[i]; } dp[1] = 1; int result = 1; for(int i = 2; i <= n; i++){ dp[i] = 1; for(int j = max(i - d + 1, 1ll); j < i; j++){ if(arr[j] < arr[i]){ dp[i] = max(dp[i], dp[j] + 1); } } for(int j = i - d; j > 0; j--){ if(arr[j] >= arr[i]) break; dp[i] = max(dp[i], dp[j] + 1); } int temp = dp[i]; for(int j = 1; j < i; j++){ if(arr[j] > arr[i]){ temp = max(temp, dp[j]); } } result = max(result, temp); // cout << temp << " " << dp[i] << " " << i << endl; } cout << result << endl; return 0; }

Compilation message (stderr)

Main.cpp: In function 'void open()':
Main.cpp:8:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    8 |   freopen("input.inp", "r", stdin);
      |   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#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...