이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///* __ __ __ */
///* ====== _ /| /| __ _ / | | /| | * | | | | / /| |\ | / | | * | / */
///* \- || |_| |_ / |/ | | | |_ |- | |--| /-| | | \ \ |==| |- /=| | \ | | |--| | |- */
///* || | | |_ / | |__| _| |_ \__ | | / | |__ | __| | | | \ / | | \| \__ | | | | \ */
///*
// 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];
x += a[i];
y += b[i];
}
x/=n;
y/=n;
int ax = x, ay = y;
int anx = 0;
int any = 0;
for(int i:a)anx+=abs(x-i);
for(int i:b)any+=abs(y-i);
for(int i = x-1000; i <= x+1000; i++){
int res = 0;
for(int j:a)res+=abs(i-j);
if(res <= anx){
anx = res;
ax = i;
}
}
for(int i = y-1000; i <= y+1000; i++){
int res = 0;
for(int j:b)res+=abs(i-j);
if(res <= any){
any = res;
ay = i;
}
}
cout << ax << ' ' << ay << '\n';
}
main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
int test = 1;
//cin >> test;
while(test--){
solve();
}
}
컴파일 시 표준 에러 (stderr) 메시지
bestplace.cpp:62:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
62 | main(){
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |