# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1056125 | cpdreamer | Financial Report (JOI21_financial) | C++14 | 45 ms | 37968 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <utility>
#define V vector
#define P pair
#define S second
#define F first
#define pb push_back
#define all(v) v.begin(),v.end()
typedef long long ll;
using namespace __gnu_pbds;
using namespace std;
typedef tree<int,null_type,less<int>,rb_tree_tag,
tree_order_statistics_node_update> indexed_set;
static int called = 0;const long long MOD = 1e9+7; // 1e9 + 7
void file(){
freopen("input.txt.txt","r",stdin);
freopen("output.txt.txt","w",stdout);
}
void file(string s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
void modify(int &a,int v1,int v2){
if(a==-1)
a=max(v1,v2);
else
a=min(a,max(v1,v2));
}
bool dp[401][401];
int max_value[401][401];
void solve() {
int n;
cin >> n;
int d;
cin >> d;
int A[n];
memset(dp, false, sizeof(dp));
memset(max_value, -1, sizeof(max_value));
dp[0][1] = true;
for(int i=0;i<n;i++)
cin>>A[i];
max_value[0][1]=A[0];
for(int i=1;i<n;i++){
dp[i][1]=true;
max_value[i][1]=A[i];
for(int j=1;j<=i+1;j++){
for(int g=max(0,i-d);g<=i;g++){
if(A[i]>max_value[g][j-1]){
if(dp[g][j-1]) {
dp[i][j]=true;
modify(max_value[i][j], A[i], max_value[g][j - 1]);
}
}
else{
if(dp[g][j]){
dp[i][j]=true;
modify(max_value[i][j],A[i],max_value[g][j]);
}
}
}
}
}
int ans=1;
for(int i=1;i<=400;i++){
if(dp[n-1][i]){
ans=i;
}
}
cout<<ans<<endl;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
file();
solve();
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... |