이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define task "JOI21_FINANCIAL"
using namespace std;
const int N = 3e5 + 5;
int n, A[N], D;
set < int > Set;
int CP[N], cnt;
void compress()
{
for(int i = 1; i <= n; i++) Set.insert(A[i]);
for(int j : Set) CP[++cnt] = j;
for(int i = 1; i <= n; i++)
A[i] = lower_bound(CP + 1, CP + cnt + 1, A[i]) - CP;
}
namespace sub2
{
int dp[405][405], ans;
void solve()
{
for(int i = 0; i <= n; i++)
for(int j = 0; j <= n; j++) dp[i][j] = -1e9;
dp[0][0] = 0;
for(int i = 0; i < n; i++)
{
if(i)
dp[i][A[i]] = max(dp[i][A[i]], 1);
for(int j = 0; j <= n; j++)
for(int t = i + 1; t <= i + D; t++)
if(t <= n)
dp[t][max(A[t], j)] = max(dp[t][max(A[t], j)], dp[i][j] + (A[t] > j));
}
for(int j = 0; j <= n; j++) ans = max(ans, dp[n][j]);
cout << ans;
}
}
namespace sub3
{
int dp[7005], ans;
void solve()
{
for(int i = 1; i <= n; i++)
{
dp[i] = 1;
bool ok = true;
int cnt = 0;
for(int j = i - 1; j >= 1; j--)
{
if(ok && A[j] < A[i]) dp[i] = max(dp[i], dp[j] + 1);
if(A[j] >= A[i]) cnt++;
else cnt = 0;
if(cnt >= D) ok = false;
}
ans = max(ans, dp[i]);
}
cout << ans;
}
}
namespace sub4
{
int L[N], St[N], top, ans;
priority_queue < int > pq;
void solve()
{
for(int i = 1; i <= n; i++)
{
while(top && A[i] > A[St[top]]) top--;
L[i] = St[top] + 1;
St[++top] = i;
}
for(int i = n; i >= 1; i--)
{
pq.push(L[i]);
while(pq.top() > i) pq.pop();
ans = max(ans, (int)pq.size());
}
cout << ans;
}
}
namespace sub5
{
int ans;
struct FenwickTree
{
int BIT[N];
int get(int p)
{
int res = 0;
for( ; p ; p -= p & -p)
res = max(res, BIT[p]);
return res;
}
void update(int p, int val)
{
for( ; p <= 3e5; p += p & -p)
BIT[p] = max(BIT[p], val);
}
} FT;
void solve()
{
for(int i = 1; i <= n; i++)
{
int tmp = FT.get(A[i] - 1) + 1;
FT.update(A[i], tmp);
ans = max(ans, tmp);
}
cout << ans;
}
}
int main()
{
if(fopen(task ".inp","r"))
{
freopen(task ".inp","r",stdin);
freopen(task ".out","w",stdout);
}
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> D;
for(int i = 1; i <= n; i++) cin >> A[i];
compress();
if(n <= 400) sub2::solve();
else if(n <= 7000) sub3::solve();
else if(D == 1) sub4::solve();
else if(D == n) sub5::solve();
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'int main()':
Main.cpp:114:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
114 | freopen(task ".inp","r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:115:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
115 | freopen(task ".out","w",stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |