結果

問題 No.2718 Best Consonance
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-04-05 22:33:37
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,037 ms / 4,000 ms
コード長 662 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 208,424 KB
実行使用メモリ 8,024 KB
最終ジャッジ日時 2024-10-02 12:48:45
合計ジャッジ時間 19,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
	int N;
	cin >> N;
	using P = pair<ll, ll>;
	std::vector<P> A(N);
	for (auto& [a, b] : A) cin >> a >> b;
	sort(A.begin(), A.end(), [](P a, P b) {return a.first * a.second < b.first * b.second;});
	vector<ll> Bs(200020, (ll)1e18);
	ll ans = 0;
	for (int i = N - 1; i >= 0; i --) {
		auto& [a, b] = A[i];
		ll mi = (ll)1e18;
		for (ll x = 1; x * x <= a; x ++) {
			if (a % x) continue;
			mi = min(mi, Bs[x]);
			ll d = a / x;
			Bs[x] = min(Bs[x], d);
			if (d > x) {
				mi = min(mi, Bs[d]);
				Bs[d] = min(Bs[d], x);
			}
		}
		ans = max(ans, b / mi);
	}
	cout << ans << endl;
}
0