結果

問題 No.2718 Best Consonance
ユーザー AerenAeren
提出日時 2024-04-05 22:48:59
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 324 ms / 4,000 ms
コード長 1,446 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 269,284 KB
実行使用メモリ 28,408 KB
最終ジャッジ日時 2024-10-02 12:50:50
合計ジャッジ時間 14,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC optimize("O3,unroll-loops")
#include <bits/stdc++.h>
// #include <x86intrin.h>
using namespace std;
#if __cplusplus >= 202002L
using namespace numbers;
#endif
template<class T> T &ctmin(T &x){ return x; }
template<class T, class Head, class ...Tail> T &ctmin(T &x, const Head &h, const Tail &... t){ return ctmin(x = min<T>(x, h), t...); }
template<class T> T &ctmax(T &x){ return x; }
template<class T, class Head, class ...Tail> T &ctmax(T &x, const Head &h, const Tail &... t){ return ctmax(x = max<T>(x, h), t...); }



int main(){
	cin.tie(0)->sync_with_stdio(0);
	cin.exceptions(ios::badbit | ios::failbit);
	int n;
	cin >> n;
	vector<vector<int>> div(200'001);
	for(auto x = 1; x <= 200'000; ++ x){
		for(auto y = x; y <= 200'000; y += x){
			div[y].push_back(x);
		}
	}
	vector<array<int, 2>> a(n);
	for(auto &[x, y]: a){
		cin >> x >> y;
	}
	int res = -1;
	{
		ranges::sort(a);
		vector<array<int, 2>> b;
		for(auto l = 0; l < n; ){
			int r = l;
			while(r < n && a[l][0] == a[r][0]){
				++ r;
			}
			if(r - l >= 2){
				ctmax(res, a[r - 2][1]);
			}
			b.push_back(a[r - 1]);
			l = r;
		}
		a = b;
	}
	ranges::sort(a, [&](auto p, auto q){ return 1LL * p[0] * p[1] > 1LL * q[0] * q[1]; });
	vector<int> opt(200'001, numeric_limits<int>::max());
	for(auto [x, y]: a){
		for(auto g: div[x]){
			ctmax(res, y / opt[g]);
		}
		for(auto g: div[x]){
			ctmin(opt[g], x / g);
		}
	}
	cout << res << "\n";
	return 0;
}

/*

*/
0