結果

問題 No.2262 Fractions
ユーザー chineristACchineristAC
提出日時 2023-04-07 23:34:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 881 ms / 2,000 ms
コード長 5,545 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 92,468 KB
最終ジャッジ日時 2024-05-05 07:24:47
合計ジャッジ時間 20,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 193 ms
84,996 KB
testcase_01 AC 656 ms
88,688 KB
testcase_02 AC 650 ms
88,872 KB
testcase_03 AC 660 ms
88,664 KB
testcase_04 AC 861 ms
91,428 KB
testcase_05 AC 769 ms
90,424 KB
testcase_06 AC 666 ms
88,488 KB
testcase_07 AC 756 ms
90,124 KB
testcase_08 AC 748 ms
90,504 KB
testcase_09 AC 881 ms
92,468 KB
testcase_10 AC 676 ms
88,748 KB
testcase_11 AC 597 ms
87,220 KB
testcase_12 AC 598 ms
87,280 KB
testcase_13 AC 692 ms
88,004 KB
testcase_14 AC 627 ms
87,692 KB
testcase_15 AC 582 ms
87,708 KB
testcase_16 AC 158 ms
84,380 KB
testcase_17 AC 160 ms
84,736 KB
testcase_18 AC 160 ms
84,096 KB
testcase_19 AC 494 ms
87,304 KB
testcase_20 AC 411 ms
87,052 KB
testcase_21 AC 385 ms
86,280 KB
testcase_22 AC 381 ms
86,288 KB
testcase_23 AC 399 ms
86,280 KB
testcase_24 AC 209 ms
85,012 KB
testcase_25 AC 239 ms
85,000 KB
testcase_26 AC 300 ms
85,508 KB
testcase_27 AC 316 ms
85,388 KB
testcase_28 AC 307 ms
85,256 KB
testcase_29 AC 336 ms
85,652 KB
testcase_30 AC 241 ms
85,136 KB
testcase_31 AC 252 ms
85,260 KB
testcase_32 AC 281 ms
85,512 KB
testcase_33 AC 315 ms
85,508 KB
testcase_34 AC 237 ms
85,396 KB
testcase_35 AC 140 ms
84,224 KB
testcase_36 AC 124 ms
81,536 KB
testcase_37 AC 118 ms
77,824 KB
testcase_38 AC 112 ms
77,568 KB
testcase_39 AC 295 ms
86,168 KB
testcase_40 AC 346 ms
86,552 KB
testcase_41 AC 519 ms
87,184 KB
testcase_42 AC 435 ms
87,060 KB
testcase_43 AC 265 ms
85,388 KB
testcase_44 AC 297 ms
85,776 KB
testcase_45 AC 255 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

from collections import deque
class Dinic:
    def __init__(self, N):
        self.N = N
        self.G = [[] for i in range(N)]

    def add_edge(self, fr, to, cap):
        forward = [to, cap, None]
        forward[2] = backward = [fr, 0, forward]
        self.G[fr].append(forward)
        self.G[to].append(backward)

    def add_multi_edge(self, v1, v2, cap1, cap2):
        edge1 = [v2, cap1, None]
        edge1[2] = edge2 = [v1, cap2, edge1]
        self.G[v1].append(edge1)
        self.G[v2].append(edge2)

    def bfs(self, s, t):
        self.level = level = [None]*self.N
        deq = deque([s])
        level[s] = 0
        G = self.G
        while deq:
            v = deq.popleft()
            lv = level[v] + 1
            for w, cap, _ in G[v]:
                if cap and level[w] is None:
                    level[w] = lv
                    deq.append(w)
        return level[t] is not None

    def dfs(self, v, t, f):
        if v == t:
            return f
        level = self.level
        for e in self.it[v]:
            w, cap, rev = e
            if cap and level[v] < level[w]:
                d = self.dfs(w, t, min(f, cap))
                if d:
                    e[1] -= d
                    rev[1] += d
                    return d
        return 0

    def flow(self, s, t):
        flow = 0
        INF = 10**9 + 7
        G = self.G
        while self.bfs(s, t):
            *self.it, = map(iter, self.G)
            f = INF
            while f:
                f = self.dfs(s, t, INF)
                flow += f
        return flow

def floor_sum(n: int, m: int, a: int, b: int) -> int:
    ans = 0

    if a >= m:
        ans += (n - 1) * n * (a // m) // 2
        a %= m

    if b >= m:
        ans += n * (b // m)
        b %= m

    y_max = (a * n + b) // m
    x_max = y_max * m - b

    if y_max == 0:
        return ans

    ans += (n - (x_max + a - 1) // a) * y_max
    ans += floor_sum(y_max, a, m, (a - x_max % a) % a)

    return ans

M = 3*10**5 + 1
mebius = [1] * (M+1)
prime = [True] * (M+1)
for p in range(2,M+1):
    if not prime[p]:
        continue
    for n in range(p,M+1,p):
        if n%(p*p) == 0:
            mebius[n] = 0
        mebius[n] *= -1
        prime[n] = False



mebius_cum = [mebius[n] for n in range(M+1)]
mebius[0] = 0
for n in range(1,M):
    mebius_cum[n+1] += mebius_cum[n]

def solve(N,K):
    lower = (0,1)
    upper = (1,0)

    calc = 0

    def cond(p,q):
        nonlocal calc
        calc += 1
        #assert p <= N  and q <= N
        """
        ・qx<=py
        ・1 <= x,y <= N
        ・gcd(x,y)=1
        をみたすx,yを数える

        gcd(x,y)がkの倍数とすると

        sum((N//k)-(qi)//p for i in range(1,(N//k)+1))
        -> floor_sum

        +メビウス変換
        """

        res = 0
        B = int(N**.5)
        for k in range(1,B+1):
            t = N//k
            tmp = 0

            ok = -1
            ng = t
            while ng-ok>1:
                mid = (ok+ng)//2
                if (q*mid+q-1)//p <= t:
                    ok = mid
                else:
                    ng = mid
            
            
            tmp = t * ng - floor_sum(ng,p,q,q-1)

            
            
            res += tmp * mebius[k]

        
        
        
        for t in range(1,N//(B+1)+1):
            
            k_l = N//(t+1)+1
            k_r = N//t

            tmp = 0
            ok = -1
            ng = t
            while ng-ok>1:
                mid = (ok+ng)//2
                if (q*mid+q-1)//p <= t:
                    ok = mid
                else:
                    ng = mid
            
            
            tmp = t * ng - floor_sum(ng,p,q,q-1)
            res += tmp * (mebius_cum[k_r] - mebius_cum[k_l-1])

        
        return res

    
    if cond(N,1) < K:
        print(-1)
        return 

    while True:
        a,b = lower
        c,d = upper
        p,q = (a+c,b+d)


        check = cond(p,q)
        if  check < K:
            """
            右に潜る
            """
            ok = 1
            if d!=0:
                ng = min((N-b)//d,(N-a)//c) + 1
            else:
                ng = (N-a)//c + 1
            while ng-ok>1:
                mid = (ok+ng)//2
                p,q = a+c*mid,b+d*mid
                xxx = cond(p,q)
                if  xxx < K:
                    ok = mid
                elif K < xxx:
                    ng = mid
                else:
                    p,q = a+c*mid,b+d*mid
                    print("{}/{}".format(p,q))
                    return 
            lower = (a+c*ok,b+d*ok)
        elif K < check:
            """
            左に潜る
            """
            ok = 1
            if a!=0:
                ng = min((N-d)//b,(N-c)//a) + 1
            else:
                ng = (N-d)//b + 1
            
            
            
            while ng-ok>1:
                mid = (ok+ng)//2
                p,q = a*mid+c,b*mid+d
                if cond(p,q) > K:
                    ok = mid
                else:
                    ng = mid
            upper = (a*ok+c,b*ok+d)
        else:
            print("{}/{}".format(p,q))
            return 

for _ in range(int(input())):
    N,K = mi()
    solve(N,K)
    
    
0