結果

問題 No.2262 Fractions
ユーザー KumaTachiRenKumaTachiRen
提出日時 2023-04-07 22:50:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,654 ms / 2,000 ms
コード長 1,828 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 203,136 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-05 07:24:24
合計ジャッジ時間 49,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,023 ms
5,248 KB
testcase_01 AC 97 ms
5,376 KB
testcase_02 AC 106 ms
5,376 KB
testcase_03 AC 110 ms
5,376 KB
testcase_04 AC 120 ms
5,376 KB
testcase_05 AC 112 ms
5,376 KB
testcase_06 AC 125 ms
5,376 KB
testcase_07 AC 124 ms
5,376 KB
testcase_08 AC 118 ms
5,376 KB
testcase_09 AC 129 ms
5,376 KB
testcase_10 AC 127 ms
5,376 KB
testcase_11 AC 751 ms
5,376 KB
testcase_12 AC 733 ms
5,376 KB
testcase_13 AC 772 ms
5,376 KB
testcase_14 AC 767 ms
5,376 KB
testcase_15 AC 738 ms
5,376 KB
testcase_16 AC 395 ms
5,376 KB
testcase_17 AC 373 ms
5,376 KB
testcase_18 AC 368 ms
5,376 KB
testcase_19 AC 1,420 ms
5,376 KB
testcase_20 AC 1,290 ms
5,376 KB
testcase_21 AC 1,435 ms
5,376 KB
testcase_22 AC 1,312 ms
5,376 KB
testcase_23 AC 1,120 ms
5,376 KB
testcase_24 AC 1,596 ms
5,376 KB
testcase_25 AC 1,601 ms
5,632 KB
testcase_26 AC 1,585 ms
5,504 KB
testcase_27 AC 1,602 ms
5,376 KB
testcase_28 AC 1,547 ms
5,504 KB
testcase_29 AC 1,649 ms
5,504 KB
testcase_30 AC 1,579 ms
5,632 KB
testcase_31 AC 1,631 ms
5,632 KB
testcase_32 AC 1,654 ms
5,504 KB
testcase_33 AC 1,588 ms
5,632 KB
testcase_34 AC 1,598 ms
5,504 KB
testcase_35 AC 1,645 ms
5,504 KB
testcase_36 AC 1,629 ms
5,632 KB
testcase_37 AC 11 ms
5,632 KB
testcase_38 AC 11 ms
5,504 KB
testcase_39 AC 1,370 ms
5,376 KB
testcase_40 AC 1,347 ms
5,376 KB
testcase_41 AC 1,566 ms
5,376 KB
testcase_42 AC 1,356 ms
5,376 KB
testcase_43 AC 1,414 ms
5,376 KB
testcase_44 AC 1,588 ms
5,632 KB
testcase_45 AC 1,637 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

struct Fast
{
  Fast()
  {
    std::cin.tie(0);
    ios::sync_with_stdio(false);
  }
} fast;

#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--)
#define ll long long

template <typename T>
bool chmax(T &a, const T &b)
{
  if (a < b)
  {
    a = b;
    return true;
  }
  return false;
}
template <typename T>
bool chmin(T &a, const T &b)
{
  if (a > b)
  {
    a = b;
    return true;
  }
  return false;
}

void solve()
{
  ll n, k;
  cin >> n >> k;

  vector<ll> dp(n + 1, 0);
  ll tot = 0;
  {
    for (int i = 1; i <= n; i++)
      dp[i] = (n / i) * (n / i);
    for (ll i = n; i >= 1; i--)
      for (ll j = i * 2; j <= n; j += i)
        dp[i] -= dp[j];
    if (dp[1] < k)
    {
      cout << -1;
      return;
    }
    tot = dp[1];
  }

  bool inv = false;
  if (k * 2 > tot)
  {
    k = tot - k + 1;
    inv = true;
  }

  {
    ll l = 0, r = n * n + 10;
    while (r - l > 1)
    {
      ll x = (l + r) / 2;
      for (ll i = n; i >= 1; i--)
      {
        dp[i] = 0;
        ll m = n / i;
        for (int a = 1; a <= m; a++)
          dp[i] += min(m, a * x / (n * n));
        for (ll j = i * 2; j <= n; j += i)
          dp[i] -= dp[j];
      }
      if (dp[1] < k)
      {
        l = x;
      }
      else
      {
        r = x;
      }
    }
    for (ll a = 1; a <= n; a++)
    {
      ll x = a * l / n / n + 1;
      ll y = a * r / n / n;
      if (x == y)
      {
        if (!inv)
        {
          cout << y << "/" << a;
        }
        else
        {
          cout << a << "/" << y;
        }
        return;
      }
    }
  }
}

int main()
{
  int t;
  cin >> t;
  while (t--)
  {
    solve();
    if (t)
    {
      cout << "\n";
    }
    else
    {
      cout << endl;
    }
  }
}
0