#include <bits/stdc++.h>
using namespace std;
//~ #define int long long
#define FASTIO ios_base::sync_with_stdio(false); cin.tie(NULL);
#define all(x) (x).begin(), (x).end()
#define pb push_back
#define pii pair<int, int>
#define ff first
#define ss second
#define PI acos(-1)
#define ld long double
template<class T> bool chmin(T& a, const T& b) {return a>b? a=b, true:false;}
template<class T> bool chmax(T& a, const T& b) {return a<b? a=b, true:false;}
const int mod = 1e9+7, N = 2e5+5;
int msb(int val){return sizeof(int)*8-__builtin_clzll(val)-1;}
int n, m, k;
int a[N];
bool check(vector<int> &v){
int n = v.size();
int t = v[0] + v[n-1];
for(int l=0,r=n-1;l<r;l++,r--){
if(v[l] + v[r] != t)return false;
}return true;
}
void solve(int test_case){
int i, j;
cin >> n >> k;
m = n+k;
for(i=1;i<=m;i++){
cin >> a[i];
}
sort(a+1,a+m+1);
if(k == 1){
bool ok = true;
int t = (a[1] + a[m-1]);
for(int l=1,r=m-1;l<r;l++,r--){
if(a[l] + a[r] != t)ok = false;
}
if(ok){
for(i=1;i<=m-1;i++)cout << a[i] << ' ' ;
cout << '\n';
return;
}
ok = true;
t = (a[2] + a[m]);
for(int l=2,r=m;l<r;l++,r--){
if(a[l] + a[r] != t)ok = false;
}
if(ok){
for(i=2;i<=m;i++)cout << a[i] << ' ' ;
cout << '\n';
return;
}
t = a[1] + a[m];
for(int l=2,r=m-1;l<r;l++,r--){
if(a[l] + a[r] != t){
vector<int> v;
for(i=1;i<=m;i++){
if(i==l)continue;
v.pb(a[i]);
}
if(check(v)){
for(auto x : v)cout << x << ' ' ;
cout << '\n';
return;
}
v.clear();
for(i=1;i<=m;i++){
if(i==r)continue;
v.pb(a[i]);
}
if(check(v)){
for(auto x : v)cout << x << ' ' ;
cout << '\n';
return;
}
assert(false);
}
}
}else {
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
shuffle(a+1,a+m+1, rng);
map<int,int> possible_sums_not;
for(i=1;i<=m;i++){
for(j=i+1;j<m;j++){
if(possible_sums_not.size() > 106){i=m;break;}
possible_sums_not[a[i] + a[j]]++;
}
}
vector<pii> possible_sums;
for(auto [x,y] : possible_sums_not)possible_sums.pb({y,x});
sort(all(possible_sums));
reverse(all(possible_sums));
for(auto [no_need, sum] : possible_sums){
map<int,int>cnt;
for(i=1;i<=m;i++){
cnt[a[i]]++;
}
int have = 0;
vector<int> v;
for(i=1;i<=m;i++){
if(cnt[a[i]] <= 0)continue;
if(a[i] >= sum)continue;
if(sum-a[i] == a[i]){
if(cnt[sum - a[i]] > 1){
cnt[sum - a[i]]--;
cnt[a[i]]--;
have++;
v.pb(a[i]);
v.pb(sum-a[i]);
}
}else if(cnt[sum - a[i]] > 0){
cnt[sum - a[i]]--;
cnt[a[i]]--;
have++;
v.pb(a[i]);
v.pb(sum-a[i]);
}
}
//~ cout << sum << ' ' << have << '\n';
if(have >= n/2){
sort(v.begin(), v.begin() + n);
for(i=0;i<n;i++)cout << v[i] << ' ' ;
cout << '\n';
return;
}
}
}
return;
}
/*
4 1
2 4 8 6 10
*/
signed main(){
FASTIO;
//~ #define MULTITEST 1
#if MULTITEST
int _T;
cin >> _T;
for(int T_CASE = 1; T_CASE <= _T; T_CASE++)
solve(T_CASE);
#else
solve(1);
#endif
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
2 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
876 KB |
Output is correct |
2 |
Correct |
36 ms |
2540 KB |
Output is correct |
3 |
Correct |
37 ms |
2412 KB |
Output is correct |
4 |
Correct |
37 ms |
2412 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
3056 ms |
14956 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
364 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
0 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Execution timed out |
3074 ms |
15212 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
15 ms |
364 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |