QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#740325 | #5035. foo~ | zwh2008 | 0 | 11ms | 18356kb | C++14 | 1.2kb | 2024-11-13 08:57:50 | 2024-11-13 08:57:52 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pi=pair<int,int>;
#define fi first
#define se second
const int N=6e5+5;
int n,m,ans,a[N],a0[N],st[N],f[N],g[N],g1[N],g2[N];
template<class T>void gmax(T&x,T y){x=(x>y?x:y);}
void slv() {
memset(f,-0x3f,sizeof(f)),f[0]=0;
for(int o=1;o<=m;o++) {
memcpy(g,f,sizeof(g)),memset(f,-0x3f,sizeof(f));
int mx=g[0],top=0,Mx=-1e9;
for(int i=1;i<=n;i++) {
g1[a[i]]=g[i-1]+1,g2[a[i]]=mx+1;
while(top&&a[st[top]]<a[i]) {
gmax(g1[a[i]],g1[a[st[top]]]+1);
top--;
}
if(top)gmax(g2[a[i]],g2[a[st[top]]]+1);
gmax(Mx,max(g1[a[i]],g2[a[i]]));
f[i]=Mx,mx=max(mx,g[i]),st[++top]=i;
}
}ans=max(ans,f[n]);
}
int main() {
#ifndef ONLINE_JUDGE
freopen(".in","r",stdin);
freopen(".out","w",stdout);
#endif
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
cin>>n>>m;int p0=0;
for(int i=1;i<=n;i++)cin>>a0[i],p0=(a0[i]==n?i:p0);
for(int i=1;i<=n;i++)a[i]=a0[(i-2+p0)%n+1];
slv(),reverse(a+1,a+n+1),slv(),cout<<ans<<'\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 10
Accepted
time: 6ms
memory: 18048kb
input:
23 6 16 20 22 4 21 10 3 7 5 8 15 12 9 1 6 17 23 13 11 19 18 14 2
output:
20
result:
ok "20"
Test #2:
score: 10
Accepted
time: 0ms
memory: 15880kb
input:
13 6 13 9 3 4 12 6 5 1 8 10 11 7 2
output:
13
result:
ok "13"
Test #3:
score: 0
Wrong Answer
time: 0ms
memory: 15880kb
input:
25 3 25 2 3 19 5 6 7 11 8 10 9 20 4 14 21 1 17 12 13 18 15 22 23 16 24
output:
15
result:
wrong answer 1st words differ - expected: '16', found: '15'
Subtask #2:
score: 0
Wrong Answer
Test #21:
score: 0
Wrong Answer
time: 3ms
memory: 18356kb
input:
93943 1 87243 48984 50611 19218 77699 25025 85769 28141 13380 34875 42459 66419 53472 4367 48292 16894 92171 87263 42527 67085 30687 29235 27515 81053 31421 34864 83591 70491 75344 7026 50250 63402 26773 5330 36308 76399 80032 15501 16205 71750 73964 67876 68901 70548 2043 79979 89479 19784 38838 44...
output:
24
result:
wrong answer 1st words differ - expected: '25', found: '24'
Subtask #3:
score: 0
Wrong Answer
Test #36:
score: 0
Wrong Answer
time: 11ms
memory: 15884kb
input:
1992 25 144 612 1315 1966 1779 1773 1529 625 36 1849 1783 1441 1388 1558 1258 724 137 397 542 353 1162 1213 406 792 1317 882 994 298 1864 1969 103 449 508 1501 89 1721 195 778 657 222 1152 1780 613 743 1206 694 829 142 69 1973 1465 1343 655 1540 155 146 350 491 759 1695 1082 1357 1329 1745 232 1850 ...
output:
245
result:
wrong answer 1st words differ - expected: '237', found: '245'
Subtask #4:
score: 0
Skipped
Dependency #1:
0%
Subtask #5:
score: 0
Skipped
Dependency #4:
0%
Subtask #6:
score: 0
Skipped
Dependency #2:
0%