結果

問題 No.180 美しいWhitespace (2)
ユーザー minamiminami
提出日時 2019-03-28 02:51:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,589 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 166,020 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 00:07:16
合計ジャッジ時間 3,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#ifdef _DEBUG
#include "dump.hpp"
#else
#define dump(...)
#endif

#define int long long
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--)
#define all(c) begin(c),end(c)
const int INF = sizeof(int) == sizeof(long long) ? 0x3f3f3f3f3f3f3f3fLL : 0x3f3f3f3f;
const int MOD = 1'000'000'007;
template<class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template<class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; }


signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N; cin >> N;
	vector<int> a(N), b(N); rep(i, 0, N) {
		cin >> a[i] >> b[i];
	}

	// 三分探索
	auto f = [&](double x) {
		double maxi = -INF, mini = INF;
		rep(i, 0, N) {
			chmax(maxi, a[i] + b[i] * x);
			chmin(mini, a[i] + b[i] * x);
		}
		return maxi - mini;
	};
	auto ternarySearch = [&](double l, double r) {
		for (int i = 0; i < 1000; i++) {
			double m1 = l + (r - l) / 3, m2 = r - (r - l) / 3;
			// min 下に凸 : f(m1) > f(m2)
			// max 上に凸 : f(m1) < f(m2)
			if (f(m1) > f(m2)) {
				l = m1;
			}
			else {
				r = m2;
			}
		}
		return r;
	};
	double x = ternarySearch(0, INF);
	auto g = [&](int x) {
		int maxi = -INF, mini = INF;
		rep(i, 0, N) {
			chmax(maxi, a[i] + b[i] * x);
			chmin(mini, a[i] + b[i] * x);
		}
		return maxi - mini;
	};
	dump(x);
	int mini = INF;
	int ans = -1;
	rep(i, max((int)(x - 1), 1LL), max((int)(x + 2), 2LL)) {
		if (chmin(mini, g(i))) {
			ans = i;
		}
	}
	cout << ans << endl;
	return 0;
}
0