結果

問題 No.2718 Best Consonance
ユーザー atug tokyoatug tokyo
提出日時 2024-06-26 19:29:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,906 ms / 4,000 ms
コード長 1,323 bytes
コンパイル時間 5,527 ms
コンパイル使用メモリ 317,076 KB
実行使用メモリ 284,360 KB
最終ジャッジ日時 2024-06-26 19:29:49
合計ジャッジ時間 28,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
29,364 KB
testcase_01 AC 195 ms
29,284 KB
testcase_02 AC 196 ms
29,360 KB
testcase_03 AC 196 ms
29,416 KB
testcase_04 AC 189 ms
29,432 KB
testcase_05 AC 222 ms
29,396 KB
testcase_06 AC 197 ms
29,388 KB
testcase_07 AC 178 ms
29,220 KB
testcase_08 AC 193 ms
29,376 KB
testcase_09 AC 199 ms
29,352 KB
testcase_10 AC 202 ms
29,400 KB
testcase_11 AC 251 ms
29,496 KB
testcase_12 AC 183 ms
29,388 KB
testcase_13 AC 202 ms
29,404 KB
testcase_14 AC 689 ms
55,284 KB
testcase_15 AC 562 ms
49,264 KB
testcase_16 AC 564 ms
50,992 KB
testcase_17 AC 517 ms
46,428 KB
testcase_18 AC 623 ms
52,356 KB
testcase_19 AC 533 ms
48,760 KB
testcase_20 AC 663 ms
55,336 KB
testcase_21 AC 654 ms
54,152 KB
testcase_22 AC 690 ms
54,296 KB
testcase_23 AC 459 ms
44,656 KB
testcase_24 AC 711 ms
57,824 KB
testcase_25 AC 735 ms
57,916 KB
testcase_26 AC 734 ms
58,052 KB
testcase_27 AC 726 ms
57,776 KB
testcase_28 AC 724 ms
57,792 KB
testcase_29 AC 723 ms
57,900 KB
testcase_30 AC 677 ms
58,028 KB
testcase_31 AC 696 ms
57,956 KB
testcase_32 AC 668 ms
57,636 KB
testcase_33 AC 709 ms
57,860 KB
testcase_34 AC 186 ms
29,364 KB
testcase_35 AC 210 ms
29,288 KB
testcase_36 AC 765 ms
96,764 KB
testcase_37 AC 203 ms
29,408 KB
testcase_38 AC 1,906 ms
284,360 KB
testcase_39 AC 226 ms
29,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// オリジナル: https://yukicoder.me/submissions/990891
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;  // 1000000007;
using ll = long long;
using pp = pair<int, int>;
#define sr string
#define vc vector
#define fi first
#define se second
#define rep(i, n) for (int i = 0; i < (int)n; i++)
#define pb push_back
#define all(v) v.begin(), v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main() {
  int n;
  cin >> n;
  vc<pp> v(n);
  for (auto& [a, b] : v) cin >> a >> b;
  int m = 2e5 + 5;
  vc d(m, vc<int>(0));
  for (int i = 1; i < m; i++)
    for (int j = i; j < m; j += i) d[j].pb(i);
  vc dx(m, vc<pp>(0));
  for (auto p : v)
    for (auto au : d[p.fi]) dx[au].pb(p);
  int ans = 0;
  for (int i = 1; i < m; i++)
    if (dx[i].size()) {
      auto& vx = dx[i];
      // sort にわたす比較関数は等しい場合は false を返すように実装します。
      // sort(all(vx),
      //      [&](pp a, pp b) { return (ll)a.fi * a.se >= (ll)b.fi * b.se; });
      sort(all(vx),
           [&](pp a, pp b) { return (ll)a.fi * a.se > (ll)b.fi * b.se; });
      int mn = 1e9 + 5;
      for (auto [a, b] : vx) {
        ans = max(ans, b / mn);
        mn = min(mn, a / i);
      }
    }
  cout << ans;
}
0