Submission #493511

#TimeUsernameProblemLanguageResultExecution timeMemory
493511OverloadedBest Place (NOI17_bestplace)C++17
0 / 100
1 ms516 KiB
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef float ff;
typedef vector<long long int> vi;
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define sz(x) (int)x.size()
#define pb(x) push_back(x)
#define endl "\n"

int txtinput(){
    #ifndef ONLINE_JUDGE
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    #endif
    return 0;
}

int solve(){
    ll t,x1,y1; cin>>t;
    vi x;
    vi y;
    for (ll i = 0; i < t; i++)
    {
        cin>>x1>>y1;
        x.pb(x1);y.pb(y1);
    }

    sort(all(x)); sort(all(y));
    
    cout<<(x[0]+x[t-1])/2<<" "<<(y[0]+y[t-1])/2;

    return 0;
}


int main(){
    
    txtinput();
    //ll t;
    //cin>>t;
    
    //while(t--){
        solve();
    //}
    
    return 0;
}

Compilation message (stderr)

bestplace.cpp: In function 'int txtinput()':
bestplace.cpp:14:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 |     freopen("input.txt", "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
bestplace.cpp:15:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |     freopen("output.txt", "w", stdout);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...