結果

問題 No.2262 Fractions
ユーザー 👑 emthrmemthrm
提出日時 2023-04-08 03:26:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 2,286 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 247,380 KB
実行使用メモリ 5,984 KB
最終ジャッジ日時 2024-05-05 07:29:38
合計ジャッジ時間 16,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
5,248 KB
testcase_01 AC 54 ms
5,376 KB
testcase_02 AC 55 ms
5,376 KB
testcase_03 AC 56 ms
5,376 KB
testcase_04 AC 63 ms
5,376 KB
testcase_05 AC 55 ms
5,376 KB
testcase_06 AC 62 ms
5,376 KB
testcase_07 AC 61 ms
5,376 KB
testcase_08 AC 56 ms
5,376 KB
testcase_09 AC 64 ms
5,376 KB
testcase_10 AC 62 ms
5,376 KB
testcase_11 AC 203 ms
5,376 KB
testcase_12 AC 200 ms
5,376 KB
testcase_13 AC 207 ms
5,376 KB
testcase_14 AC 207 ms
5,376 KB
testcase_15 AC 201 ms
5,376 KB
testcase_16 AC 111 ms
5,376 KB
testcase_17 AC 108 ms
5,376 KB
testcase_18 AC 106 ms
5,376 KB
testcase_19 AC 355 ms
5,376 KB
testcase_20 AC 344 ms
5,376 KB
testcase_21 AC 367 ms
5,376 KB
testcase_22 AC 323 ms
5,376 KB
testcase_23 AC 274 ms
5,376 KB
testcase_24 AC 454 ms
5,980 KB
testcase_25 AC 462 ms
5,724 KB
testcase_26 AC 436 ms
5,724 KB
testcase_27 AC 447 ms
5,728 KB
testcase_28 AC 424 ms
5,852 KB
testcase_29 AC 445 ms
5,976 KB
testcase_30 AC 448 ms
5,984 KB
testcase_31 AC 456 ms
5,852 KB
testcase_32 AC 453 ms
5,852 KB
testcase_33 AC 462 ms
5,728 KB
testcase_34 AC 448 ms
5,728 KB
testcase_35 AC 463 ms
5,724 KB
testcase_36 AC 459 ms
5,596 KB
testcase_37 AC 15 ms
5,632 KB
testcase_38 AC 15 ms
5,632 KB
testcase_39 AC 359 ms
5,376 KB
testcase_40 AC 341 ms
5,376 KB
testcase_41 AC 345 ms
5,376 KB
testcase_42 AC 353 ms
5,376 KB
testcase_43 AC 339 ms
5,376 KB
testcase_44 AC 441 ms
5,852 KB
testcase_45 AC 448 ms
5,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {


  int t; cin >> t;
  while (t--) {
    int n; ll k; cin >> n >> k;
    const auto f = [&](const ll k) -> ll {
      // ll res = 0;
      // for (int num = 1; num <= n; ++num) {
      //   for (int den = 1; den <= n; ++den) {
      //     if (gcd(num, den) == 1 && num * n * n <= k * den) ++res;
      //   }
      // }
      // return res;
      vector<ll> g(n + 1, 0);
      for (int den = 1; den <= n; ++den) {
        g[den] += k * den / n / n;
        for (int i = den * 2; i <= n; i += den) {
          g[i] -= g[den];
        }
      }
      // cout << k << ": ";
      // REP(i, n + 1) cout << g[i] << " \n"[i == n];
      return reduce(ALL(g), 0LL);
    };
    const ll nmt1 = f(1LL * n * n);
    if (nmt1 == k) {
      cout << "1/1\n";
      continue;
    }
    if (k >= nmt1 * 2) {
      cout << "-1\n";
      continue;
    }
    bool k_is_large = false;
    if (nmt1 < k) {
      k = nmt1 * 2 - k;
      k_is_large = true;
    }
    ll lb = 0, ub = 1LL * n * n - 1;
    while (ub - lb > 1) {
      const ll mid = midpoint(lb, ub);
      (f(mid) >= k ? ub : lb) = mid;
    }
    for (int den = 1; den <= n; ++den) {
      const ll num = ub * den / n / n;
      if ((ub - 1) * den < num * n * n) {
        if (k_is_large) {
          cout << den << '/' << num << '\n';
        } else {
          cout << num << '/' << den << '\n';
        }
        break;
      }
    }
  }
  return 0;
}
0