Submission #776451

# Submission time Handle Problem Language Result Execution time Memory
776451 2023-07-08T00:19:48 Z HD1 Table Tennis (info1cup20_tabletennis) C++14
0 / 100
114 ms 6164 KB
//we are all lost trying to be someone.
#include <bits/stdc++.h>
#define fastio ios_base::sync_with_stdio(0); cin.tie(0);
#define sz(x) ll(x.size())
#define reve(x) reverse(x.begin(),x.end())
#define ff first
#define ss second
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> ii;
const ll MAX=3*(1e6+100);
const ll mod=1e9+7;
const ll inf=1e18+7;
ll A[MAX], s[1610];
vector<ll >c;
bool nice=false;
ll n, k;
map<ll,ll>M;
void solve(ll sum){
	ll j=n+k-1;
	for(ll i = 0; i < n+k and A[i] < sum/2; i++){
		while(j-1 >= 0 and A[j-1] >= sum-A[i]){
			j--;
		}
		if( j > i and A[j] == sum-A[i]){
			c.push_back(A[j]);
			c.push_back(A[i]);
			if(sz(c) >= n){
				nice=true;
				return;
			}
		}
	}
	return;
}
int main(){
	cin>>n>>k;
	for(ll i = 0; i < n + k; i++){
		cin>>A[i];
	}
	sort(A, A+n+k);
	ll cont = 0;
	ll aux = k + 1;
	if(n+k>=4*k) aux = 2*k;
	for(ll i = 0; i < aux; i++){
            for(ll j = n+k-1; j > n+k-1-aux ; j--){
                s[cont] = A[i] + A[j];
                M[s[cont]]++;
                cont++;
            }
	}
	if(n+k >= 4*k){
        cont=0;
        for(auto it: M){
            if(it.ss==2*k){
                s[cont]=it.ff;
                cont++;
            }
        }
	}
    for(ll i=0; i<cont; i++){
        solve(s[i]);
        if(nice)break;
        c.clear();
    }
	sort(c.begin(),c.end());
	for(ll i = 0; i < sz(c); i++){
		cout<<c[i]<<" ";
	}
	cout<<'\n';
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 8 ms 880 KB Output is correct
2 Incorrect 47 ms 1344 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 46 ms 1356 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 852 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 1 ms 340 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 340 KB Output is correct
2 Incorrect 47 ms 1484 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 114 ms 6164 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -