# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
523370 | Ahmed2me | Table Tennis (info1cup20_tabletennis) | C++17 | 1 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long t=1,n,m,a[200020];
bool good(long long sum)
{
long long i=1,j=n+m;
long long cnt=false;
while(i<j)
{
if(a[i]+a[j]==sum){cnt++;i++;j--;continue;}
if(a[i]+a[j]>sum){j--;continue;}
if(a[i]+a[j]<sum){i++;continue;}
}
return cnt>=(n/2);
}
void print_ans(long long sum)
{
long long i=1;long long j=n+m;
vector<long long>ans;
long long counter=false;
while(i<j)
{
if(counter>=(n/2)){break;}
if(a[i]+a[j]==sum){counter++;ans.push_back(a[i]);ans.push_back(a[j]);i++;j--;continue;}
if(a[i]+a[j]>sum){j--;continue;}
if(a[i]+a[j]<sum){i++;continue;}
}
sort(ans.begin(),ans.end());
for(int i=0;i<ans.size();i++){cout<<ans[i]<<' ';}
return;
}
void solve()
{
scanf("%d%d",n,m);map<long long,bool>mp;
for(int i=1;i<=n+m;i++){cin>>a[i];}
for(int i=1;i<=min(n,2*m);i++)
{
for(int j=max(1ll,(n-m+1));j<=n+m;j++)
{
mp[(a[i]+a[j])]=true;
}
}
for(auto I:mp){if(good(I.first)){print_ans(I.first);return;}}
}
int main()
{
ios::sync_with_stdio(NULL);cin.tie(NULL);cout.tie(NULL);
while(t--){solve();}return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |