# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
481511 | Swarnava_Chattaraj | Best Place (NOI17_bestplace) | C++17 | 97 ms | 3012 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
void solve()
{
int n;
cin >> n;
int maxi_x = 0, maxi_y = 0;
int mini_x = INT_MAX, mini_y = INT_MAX;
vector<int> X(n);
vector<int> Y(n);
for(int i = 0; i < n; i++)
{
cin >> X[i] >> Y[i];
}
sort(X.begin(), X.end());
sort(Y.begin(), Y.end());
int m_x = 0, m_y = 0;
if(n % 2 != 0)
m_x= X[n / 2];
else
m_x = (X[(n - 1) / 2] + X[(n + 1) / 2]) / 2;
if(n % 2 != 0)
m_y= Y[n / 2];
else
m_y = (Y[(n - 1) / 2] + Y[(n + 1) / 2]) / 2;
cout << m_x << ' ' << m_y << endl;
}
int main(){
// #ifndef ONLINE_JUDGE
// freopen("input.txt","r",stdin);
// freopen("output.txt","w",stdout);
// #endif
// // ll T;
// // cin >> T;
// // while(T--)
// // {
// // solve();
// // }
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... |