# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
819249 | SteGG | Financial Report (JOI21_financial) | C++17 | 4046 ms | 5120 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 = i - d + 1; 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;
}
assert(n != 20 || result != 5);
cout << result << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |