結果

問題 No.2262 Fractions
ユーザー 👑 hos.lyrichos.lyric
提出日時 2023-04-07 22:58:09
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 2,818 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 160,640 KB
実行使用メモリ 17,956 KB
最終ジャッジ日時 2024-06-22 17:45:01
合計ジャッジ時間 13,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
15,984 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 83 ms
12,416 KB
testcase_04 AC 82 ms
12,288 KB
testcase_05 AC 76 ms
12,288 KB
testcase_06 AC 82 ms
12,288 KB
testcase_07 AC 79 ms
12,288 KB
testcase_08 AC 76 ms
12,288 KB
testcase_09 AC 82 ms
12,288 KB
testcase_10 AC 77 ms
12,276 KB
testcase_11 AC 194 ms
8,572 KB
testcase_12 AC 191 ms
8,388 KB
testcase_13 AC 194 ms
8,508 KB
testcase_14 AC 196 ms
8,540 KB
testcase_15 AC 192 ms
8,552 KB
testcase_16 AC 111 ms
8,580 KB
testcase_17 AC 110 ms
8,580 KB
testcase_18 AC 110 ms
8,528 KB
testcase_19 AC 296 ms
17,060 KB
testcase_20 AC 280 ms
17,668 KB
testcase_21 AC 298 ms
17,196 KB
testcase_22 AC 279 ms
17,956 KB
testcase_23 AC 243 ms
17,580 KB
testcase_24 AC 312 ms
16,660 KB
testcase_25 AC 308 ms
16,768 KB
testcase_26 AC 306 ms
16,696 KB
testcase_27 AC 330 ms
16,680 KB
testcase_28 AC 307 ms
16,904 KB
testcase_29 AC 318 ms
17,480 KB
testcase_30 AC 313 ms
16,852 KB
testcase_31 AC 318 ms
16,836 KB
testcase_32 AC 328 ms
16,844 KB
testcase_33 AC 313 ms
17,012 KB
testcase_34 AC 314 ms
16,752 KB
testcase_35 AC 315 ms
16,828 KB
testcase_36 AC 317 ms
16,848 KB
testcase_37 AC 25 ms
7,364 KB
testcase_38 AC 25 ms
7,468 KB
testcase_39 AC 299 ms
16,540 KB
testcase_40 AC 301 ms
16,552 KB
testcase_41 AC 307 ms
16,684 KB
testcase_42 AC 302 ms
16,952 KB
testcase_43 AC 295 ms
16,488 KB
testcase_44 AC 317 ms
16,840 KB
testcase_45 AC 309 ms
17,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum LIM = 3 * 10^^5 + 10;
int[] lpf, moe;

// 0 < p/q < 1, p/q <= t/N^2
long calc(long N, long t) {
  auto fs = new long[N + 1];
  foreach (q; 1 .. N + 1) {
    fs[q] = q * t / (N*N);
    chmin(fs[q], q - 1);
  }
  foreach (q; 1 .. N + 1) {
    fs[q] += fs[q - 1];
  }
  long ret;
  foreach (d; 1 .. N + 1) {
    if (moe[d] < 0) ret -= fs[N / d];
    if (moe[d] > 0) ret += fs[N / d];
  }
  return ret;
}

alias Frac = Tuple!(long, "p", long, "q");
Frac solve(long N, long K) {
  long lo = 0, hi = N*N;
  for (; lo + 1 < hi; ) {
    const mid = (lo + hi) / 2;
    ((calc(N, mid) >= K) ? hi : lo) = mid;
  }
  foreach (q; 1 .. N + 1) {
    const p = q * hi / (N*N);
    if (lo * q < p * (N*N)) {
      return Frac(p, q);
    }
  }
  assert(false);
}

void main() {
  lpf = iota(LIM).array;
  moe = new int[LIM];
  moe[1 .. $] = 1;
  foreach (p; 2 .. LIM) if (lpf[p] == p) {
    for (int n = p; n < LIM; n += p) {
      chmin(lpf[n], p);
      moe[n] = -moe[n];
      if (n / p % p == 0) moe[n] = 0;
    }
  }
  
  try {
    for (; ; ) {
      const numCases = readInt;
      foreach (caseId; 0 .. numCases) {
        const N = readLong;
        const K = readLong;
        
        Frac ans;
        const res = calc(N, N*N);
        if (K <= res) {
          ans = solve(N, K);
        } else if (K == res + 1) {
          ans = Frac(1, 1);
        } else if (K <= res + 1 + res) {
          ans = solve(N, (res + 1 + res) + 1 - K);
          swap(ans.p, ans.q);
        }
        
        if (ans.q) {
          writefln("%s/%s", ans.p, ans.q);
        } else {
          writeln(-1);
        }
      }
    }
  } catch (EOFException e) {
  }
}
0