Submission #1006045

#TimeUsernameProblemLanguageResultExecution timeMemory
1006045kebineBest Place (NOI17_bestplace)C++17
100 / 100
84 ms2320 KiB
#include <bits/stdc++.h>
using namespace std;

#define int long long

signed main(){
    int n, ansx, ansy;
    cin >> n;
    vector <int> x, y;
    for(int i = 0; i < n; i++){
        int xp, yp;
        cin >> xp >> yp;
        x.push_back(xp);
        y.push_back(yp);
    }
    sort(x.begin(), x.end());
    sort(y.begin(), y.end());
    if(n%2 == 1){
        cout << x[(n/2)] << " " << y[(n/2)];
    }
    else{
        cout << (x[(n/2) - 1] + x[n/2])/2 << " " << (y[(n/2) - 1] + y[n/2])/2;
    }
}

Compilation message (stderr)

bestplace.cpp: In function 'int main()':
bestplace.cpp:7:12: warning: unused variable 'ansx' [-Wunused-variable]
    7 |     int n, ansx, ansy;
      |            ^~~~
bestplace.cpp:7:18: warning: unused variable 'ansy' [-Wunused-variable]
    7 |     int n, ansx, ansy;
      |                  ^~~~
#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...