# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
388782 | warner1129 | Table Tennis (info1cup20_tabletennis) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 3e5 + 5;
int arr[maxn];
int n, m;
vector<int> ans;
int Find(int x, bool key) {
int ret = 0;
for (int i = 1, j = n; i < j; i++) {
while (i < j && arr[i] + arr[j] > x) j--;
if (i < j && arr[i] + arr[j] == x) {
ret += 2;
if (key) {
ans.emplace_back(arr[i]);
ans.emplace_back(arr[j]);
}
if (ret == n - m) return ret;
}
}
return ret;
}
void solve() {
cin >> n >> m;
n += m;
for (int i = 1; i <= n; i++) cin >> arr[i];
int lim = min(n/2, m+2);
for (int i = 1; i <= lim; i++)
for (int j = n; j >= n - lim; j--)
if (i < j && Find(arr[i] + arr[j], false) >= n-m) {
Find(arr[i] + arr[j], true);
sort(ans.begin(), ans.end());
for (int v : ans) cout << v << ' ';
cout << '\n';
return;
}
return;
}
signed main() {
ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
solve();
return 0;
j