Submission #921393

# Submission time Handle Problem Language Result Execution time Memory
921393 2024-02-03T18:48:50 Z maxFedorchuk Table Tennis (info1cup20_tabletennis) C++17
9 / 100
116 ms 6096 KB
#include "bits/stdc++.h"
using namespace std;

const long long MX=2e5+10;

long long vis[MX];
long long a[MX];

long long n,k;

void solve(long long sum,long long nm)
{
    long long l=1,r=n+k,kpr=0,kg=0;

    while(l<r)
    {
        if((a[l]+a[r])<sum)
        {
            l++;
            kpr++;
        }

        if((a[l]+a[r])==sum)
        {
            vis[l]=vis[r]=nm;
            l++;
            r--;
            kg+=2;
        }

        if((a[l]+a[r])>sum)
        {
            r--;
            kpr++;
        }

        if(kpr>k)
        {
            return;
        }

        if(kg==n)
        {
            for(long long i=1;i<=n;i++)
            {
                if(vis[i]==nm)
                {
                    cout<<a[i]<<" ";
                }
            }
            cout<<"\n";

            exit(0);
        }
    }
}

int main()
{
    cin.tie(0);
    ios_base::sync_with_stdio(0);

    cin>>n>>k;

    for(long long i=1;i<=n+k;i++)
    {
        cin>>a[i];
    }

    for(long long i=1,uk=1;i<=(k+1);i++,uk++)
    {
        for(long long j=max(n,i+1);j<=n+k;j++,uk++)
        {
            solve(a[i]+a[j],uk);
        }
    }

    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 2396 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 3060 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 23 ms 6096 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2392 KB Output is correct
2 Incorrect 2 ms 2396 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2392 KB Output is correct
2 Correct 1 ms 2396 KB Output is correct
3 Correct 1 ms 2396 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2392 KB Output is correct
2 Incorrect 1 ms 2396 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2392 KB Output is correct
2 Incorrect 22 ms 5976 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2672 KB Output is correct
2 Incorrect 116 ms 5920 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -