#include <bits/stdc++.h>
#define int long long
/**
|||||||||| ||||| ||||| ||||||||||
||||||||||||| ||||| ||||| |||||
|||| |||||| ||||| ||||| |||||
||||||||||||||||| ||||||||||||||| ||||||||||
||||||||||||||||||| ||||||||||||||| |||||
||||| ||||| ||||| ||||| |||||
||||| ||||| ||||| ||||| ||||||||||
AHMED;HASSAN;SAEED;
*/
using namespace std;
unordered_map<int,int>mp;
vector<int>v;
vector<vector<pair<int,pair<int,int> > > >dp;
int n,k;
int slv(int l,int r){
///cout<<l<<' '<<r<<'\n';
if(dp[l][r].first!=-1)
return dp[l][r].first;
int ret=0;
for(int i=l+1;i<r&&(i-l)<=k+5;i++){
if(mp[v[r]-(v[i]-v[l])]>i+1){
int ret2=1+slv(i,mp[v[r]-(v[i]-v[l])]-1);
///cout<<'#'<<i<<' '<<mp[v[r]-(v[i]-v[l])]-1<<'\n';
if(ret2>ret){
ret=ret2;
dp[l][r].second={i,mp[v[r]-(v[i]-v[l])]-1};
}
}
}
return dp[l][r].first=ret;
}
int32_t main()
{
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin>>n>>k;
n+=k;
v=vector<int>(n);
for(int i=0;i<n;i++){
cin>>v[i];
mp[v[i]]=i+1;
}
int ans=0;
int l,r;
dp=vector<vector<pair<int,pair<int,int>> > >(n+5,vector<pair<int,pair<int,int>> >(n+5,{-1,{-1,-1}}));
for(int i=0;i<n;i++){
for(int j=i;j<n;j++){
int ret=slv(i,j);
if(ret>ans){
ans=ret;
l=i,r=j;
}
}
}
vector<int>v2(n-k);
int cnt=0;
int tol=0,tor=n-k-1;
while(cnt<n-k){
v2[tol]=v[l],v2[tor]=v[r];
int nl=dp[l][r].second.first,nr=dp[l][r].second.second;
l=nl,r=nr;
cnt+=2;
tol++; tor--;
}
for(int i=0;i<n-k;i++)
cout<<v2[i]<<' ';
return 0;
}
Compilation message
tabletennis.cpp: In function 'int32_t main()':
tabletennis.cpp:72:33: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
72 | v2[tol]=v[l],v2[tor]=v[r];
| ^
tabletennis.cpp:72:20: warning: 'l' may be used uninitialized in this function [-Wmaybe-uninitialized]
72 | v2[tol]=v[l],v2[tor]=v[r];
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
491 ms |
99300 KB |
Output is correct |
2 |
Correct |
502 ms |
95252 KB |
Output is correct |
3 |
Correct |
422 ms |
99856 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
555 ms |
1048580 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
648 ms |
1048580 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
127 ms |
16096 KB |
Output is correct |
2 |
Correct |
119 ms |
16092 KB |
Output is correct |
3 |
Correct |
301 ms |
30172 KB |
Output is correct |
4 |
Correct |
193 ms |
21468 KB |
Output is correct |
5 |
Correct |
270 ms |
29916 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
492 KB |
Output is correct |
2 |
Correct |
2258 ms |
105268 KB |
Output is correct |
3 |
Execution timed out |
3100 ms |
336648 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
492 KB |
Output is correct |
2 |
Runtime error |
622 ms |
1048580 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3103 ms |
259020 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |