結果

問題 No.2718 Best Consonance
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-04-05 22:33:37
言語 C++17
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 3 ms
6,824 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 5 ms
6,820 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 716 ms
7,808 KB
testcase_15 AC 549 ms
7,040 KB
testcase_16 AC 596 ms
7,276 KB
testcase_17 AC 464 ms
6,820 KB
testcase_18 AC 631 ms
7,384 KB
testcase_19 AC 525 ms
6,912 KB
testcase_20 AC 712 ms
7,808 KB
testcase_21 AC 686 ms
7,552 KB
testcase_22 AC 704 ms
7,748 KB
testcase_23 AC 422 ms
6,820 KB
testcase_24 AC 771 ms
7,936 KB
testcase_25 AC 757 ms
7,852 KB
testcase_26 AC 774 ms
7,936 KB
testcase_27 AC 765 ms
7,852 KB
testcase_28 AC 747 ms
7,896 KB
testcase_29 AC 762 ms
7,936 KB
testcase_30 AC 752 ms
7,808 KB
testcase_31 AC 738 ms
7,948 KB
testcase_32 AC 739 ms
7,936 KB
testcase_33 AC 748 ms
7,964 KB
testcase_34 AC 3 ms
6,820 KB
testcase_35 AC 3 ms
6,816 KB
testcase_36 AC 1,037 ms
8,024 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 951 ms
7,936 KB
testcase_39 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

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