#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define F first
#define S second
using namespace std;
const int N=2e5+5;
int n,k;
bool f[N];
double a[N];
vector < int > ans;
map < int , int > mp;
unordered_map < int , int > F;
void check(int x) {
ans.clear();
int r=n+k;
F.clear();
for (int i=1; i<=n+k; i++)
F[a[i]]++;
for (int i=1; i<=n+k; i++) {
if (x-a[i]<0) continue;
if (!F[a[i]]) continue;
--F[a[i]];
if (!F[x-a[i]]) { F[a[i]]++; continue; }
--F[x-a[i]];
ans.pb(a[i]),ans.pb(x-a[i]);
if (ans.size()==n) break;
}
if (ans.size()==n) {
sort(ans.begin(),ans.end());
for (int i=0; i<ans.size(); i++)
cout<<ans[i]<<" ";
exit(0);
}
}
main() {
ios::sync_with_stdio(false);
cin.tie(NULL),cout.tie(NULL);
cin>>n>>k;
for (int i=1; i<=n+k; i++)
cin>>a[i];
int R=min(4*k,n+k),L=max(1,n+k-4*k+1);
for (int i=1; i<=R; i++)
for (int j=L; j<=n+k; j++)
mp[a[i]+a[j]]++;
for (map < int , int > :: iterator it=mp.begin(); it!=mp.end(); ++it)
if ((it->second)>=k) check((it->first));
}
Compilation message
tabletennis.cpp: In function 'void check(int)':
tabletennis.cpp:34:19: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
34 | if (ans.size()==n) break;
| ~~~~~~~~~~^~~
tabletennis.cpp:37:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
37 | if (ans.size()==n) {
| ~~~~~~~~~~^~~
tabletennis.cpp:39:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for (int i=0; i<ans.size(); i++)
| ~^~~~~~~~~~~
tabletennis.cpp:21:7: warning: unused variable 'r' [-Wunused-variable]
21 | int r=n+k;
| ^
tabletennis.cpp: At global scope:
tabletennis.cpp:45:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
45 | main() {
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
512 KB |
Output is correct |
2 |
Correct |
2 ms |
512 KB |
Output is correct |
3 |
Correct |
3 ms |
512 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1792 KB |
Output is correct |
2 |
Correct |
1443 ms |
18120 KB |
Output is correct |
3 |
Correct |
438 ms |
18132 KB |
Output is correct |
4 |
Correct |
546 ms |
18404 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
685 ms |
14292 KB |
Output is correct |
2 |
Correct |
668 ms |
18148 KB |
Output is correct |
3 |
Correct |
821 ms |
17252 KB |
Output is correct |
4 |
Correct |
671 ms |
18148 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
768 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
1 ms |
384 KB |
Output is correct |
3 |
Incorrect |
0 ms |
384 KB |
Unexpected end of file - int32 expected |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
384 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
384 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
44 ms |
4600 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |