Submission #949194

# Submission time Handle Problem Language Result Execution time Memory
949194 2024-03-19T03:35:00 Z vjudge1 Best Place (NOI17_bestplace) C++17
0 / 100
47 ms 1884 KB
///*                                                    __                    __                        __                    */
///*        ======     _      /| /|  __   _            /   |  |   /|  |   *  |    |  |  | /   /| |\  | /   |  |  * | /        */
///* \-       ||  |_| |_     / |/ | |  | |_  |-        |   |--|  /-|  |   |  \ \  |==|  |-   /=| | \ | |   |--|  | |-         */
///*          ||  | | |_    /     | |__|  _| |_        \__ |  | /  |  |__ |  __|  |  |  | \ /  | |  \| \__ |  |  | | \        */
///* 
// autor :: Rick Prime
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ff first
#define ss second
#define all(x) x.begin(),x.end()
#define int long long
typedef vector<int> vi;
typedef vector<double> vd;
typedef pair<int,int> pii;
typedef vector<pii> vii;
 //#include <ext/pb_ds/assoc_container.hpp> 
 //#include <ext/pb_ds/tree_policy.hpp> 
 //using namespace __gnu_pbds; 
 //#define order_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>

const int N = 1e7, inf = 1e9, mod = 1e9+7;

void solve(){
	int n;
	cin >> n;
	int x = 0, y = 0;
	int a[n], b[n];
	for(int i = 0; i < n; i++){
		cin >> a[i] >> b[i];
	}
	auto fx = [&](int m){
		int res = 0;
		for(int i = 0; i < n; i++)res += abs(a[i]-m);
		return res;
	};
	auto fy = [&](int m){
		int res = 0;
		for(int i = 0; i < n; i++)res += abs(b[i]-m);
		return res;
	};
	int l = 0, r = 1e9, cnt = 100;
	while(l <= r && cnt--){
		int m1 = l+(r-l)/3;
		int m2 = r-(r-l)/3;
		if(fx(m1) < fx(m2))r = m2;
		else{
			l = m1;
			x = m1;
		}
	}
	l = 0; r = 1e9; cnt = 100;
	while(l <= r && cnt--){
		int m1 = l+(r-l)/3;
		int m2 = r-(r-l)/3;
		if(fy(m1) < fy(m2))r = m2;
		else{
			l = m1;
			y = m1;
		}
	}
	cout << x << ' ' << y << '\n';
}


main(){
	ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
	int test = 1;
	//cin >> test;
	while(test--){
		solve();
	}
}
 
 
 
 
 
 
 
 
 
 
 
 
 

Compilation message

bestplace.cpp:67:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   67 | main(){
      | ^~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Incorrect 0 ms 348 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 41 ms 1880 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 600 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 47 ms 1884 KB Output is correct
2 Incorrect 45 ms 1880 KB Output isn't correct
3 Halted 0 ms 0 KB -