Submission #526775

#TimeUsernameProblemLanguageResultExecution timeMemory
526775kabikaBest Place (NOI17_bestplace)C++14
100 / 100
37 ms4040 KiB
#include <bits/stdc++.h>
using namespace std;
#define ll long long

int main()
{
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  cout.tie(NULL);
  int n;
  cin >> n;
  vector<ll> x(n,0), y(n,0);
  for(int i = 0; i<n; i++)
  {
    cin >> x[i] >> y[i];
  }
  sort(x.begin(),x.end());
  sort(y.begin(),y.end());
  if(n%2==0)
  {
    ll xp = (x[n/2] + x[n/2 - 1])/2;
    ll yp = (y[n/2] + y[n/2 - 1])/2;
    cout << xp << " " << yp << '\n';
  }
  else
  {
    ll xp = x[n/2];
    ll yp = y[n/2];
    cout << xp << " " << yp << '\n';
  }
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...