이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("unroll-loops")
using namespace std;
int n,k,a[150500];
int sol[150005];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> k;
for (int i = 1; i <= n + k; i++)
cin >> a[i];
for (int i = 1; i <= k + 1; i++)
{
for (int j = n + k; j >= n - 1; j--)
{
int sum = a[i] + a[j];
int st = i + 1,dr = j - 1;
int sz = 1;
sol[0] = a[i];
sol[1] = a[j];
while (st < dr and sz < n - 1 and sz + (dr - st + 1) >= n - 1)
{
if (a[st] + a[dr] == sum)
{
sol[++sz] = a[st];
sol[++sz] = a[dr];
st++;
dr--;
}
else if (a[st] + a[dr] > sum)
dr--;
else
st++;
}
if (sz == n - 1)
{
sort(sol, sol + n);
for (int j = 0; j < n; j++)
cout << sol[j] << ' ';
return 0;
}
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |