結果

問題 No.2436 Min Diff Distance
ユーザー cho435cho435
提出日時 2023-08-11 18:37:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 624 bytes
コンパイル時間 6,602 ms
コンパイル使用メモリ 299,452 KB
実行使用メモリ 18,632 KB
最終ジャッジ日時 2024-11-18 12:39:51
合計ジャッジ時間 59,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
9,984 KB
testcase_02 AC 2 ms
9,984 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 2 ms
11,556 KB
testcase_10 AC 2 ms
13,644 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,165 ms
11,552 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,224 ms
17,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n;
	cin>>n;
	vector<int> x(n),y(n);
	rep(i,n) cin>>x.at(i)>>y.at(i);
	auto d=[&](int i,int j){
		return abs(x.at(i)-x.at(j))+abs(y.at(i)-y.at(j));
	};
	int ans=1e9;
	rep(i,n){
		int mx=0;
		int mn=1e9;
		rep(j,n){
			if(i==j) continue;
			mx=max(mx,d(i,j));
			mn=min(mn,d(i,j));
		}
		ans=min(ans,mx-mn);
	}
	cout<<ans<<endl;
}
0