結果

問題 No.2436 Min Diff Distance
ユーザー achapiachapi
提出日時 2023-08-18 23:57:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 205,036 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 06:49:46
合計ジャッジ時間 5,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 130 ms
5,376 KB
testcase_12 AC 125 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int N;
	cin >> N;
	vector<int> X(N), Y(N);
	for (int i = 0; i < N; i++){
		int x, y;
		cin >> x >> y;
		X[i] = x + y;
		Y[i] = x - y;
	}
	sort(X.begin(), X.end());
	sort(Y.begin(), Y.end());
	int ans = 1e9;
	for (int i = 0; i < N; i++){
		int m = 1e9, M = 0;
		M = max(M, abs(X[i] - X[0]));
		M = max(M, abs(X[i] - X[N - 1]));
		if (i != 0){
			m = min(m, abs(X[i] - X[i - 1]));
		}
		if (i != N - 1){
			m = min(m, abs(X[i] - X[i + 1]));
		}
		ans = min(ans, M - m);
	}
	for (int i = 0; i < N; i++){
		int m = 1e9, M = 0;
		M = max(M, abs(Y[i] - Y[0]));
		M = max(M, abs(Y[i] - Y[N - 1]));
		if (i != 0){
			m = min(m, abs(Y[i] - Y[i - 1]));
		}
		if (i != N - 1){
			m = min(m, abs(Y[i] - Y[i + 1]));
		}
		ans = min(ans, M - m);
	}
	cout << ans << '\n';
}
0