Submission #366164

# Submission time Handle Problem Language Result Execution time Memory
366164 2021-02-13T11:55:55 Z Ahmad_Hasan Table Tennis (info1cup20_tabletennis) C++17
0 / 100
1772 ms 280384 KB
#include <bits/stdc++.h>
#define int long long
/**
     ||||||||||       |||||     |||||    ||||||||||
    |||||||||||||     |||||     |||||  |||||
   ||||     ||||||    |||||     |||||  |||||
  |||||||||||||||||   |||||||||||||||    ||||||||||
 |||||||||||||||||||  |||||||||||||||           |||||
 |||||         |||||  |||||     |||||           |||||
 |||||         |||||  |||||     |||||    ||||||||||
AHMED;HASSAN;SAEED;
*/

using namespace std;
unordered_map<int,int>mp;
vector<int>v;
pair<int,pair<int,int> >dp[4000][40];
int n,k;
int slv(int l,int r){
    ///cout<<l<<' '<<r<<'\n';
    if(dp[l][r-l].first!=-1)
        return dp[l][r-l].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-l].second={i,mp[v[r]-(v[i]-v[l])]-1};
            }

        }

    }

    return dp[l][r-l].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;
    }
    for(int i=0;i<n;i++){
        for(int j=0;j<k+5;j++){
            dp[i][j]={-1,{-1,-1}};
        }
    }
    int ans=0;
    int l,r;
    ///cout<<'h'<<'\n';
    for(int i=0;i<=k;i++){
        for(int j=n-1;j>=n-k-1&&(i+n-1-j)<=k;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-l].second.first,nr=dp[l][r-l].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:77:23: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
   77 |         int nl=dp[l][r-l].second.first,nr=dp[l][r-l].second.second;
      |                      ~^~
tabletennis.cpp:77:40: warning: 'l' may be used uninitialized in this function [-Wmaybe-uninitialized]
   77 |         int nl=dp[l][r-l].second.first,nr=dp[l][r-l].second.second;
      |                                        ^~
# Verdict Execution time Memory Grader output
1 Runtime error 6 ms 4588 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 14 ms 10604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 70 ms 24628 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 61 ms 18868 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 492 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 492 KB Output is correct
2 Runtime error 6 ms 4844 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 492 KB Output is correct
2 Runtime error 72 ms 24500 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1772 ms 280384 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -