Submission #493511

# Submission time Handle Problem Language Result Execution time Memory
493511 2021-12-11T19:11:57 Z Overloaded Best Place (NOI17_bestplace) C++17
0 / 100
1 ms 516 KB
#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

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 time Memory Grader output
1 Incorrect 1 ms 416 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 416 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 332 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 516 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 416 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -