結果

問題 No.2183 LCA on Rational Tree
ユーザー vwxyzvwxyz
提出日時 2024-06-02 04:53:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,951 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,900 KB
最終ジャッジ日時 2024-06-02 04:53:50
合計ジャッジ時間 4,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
61,056 KB
testcase_01 AC 297 ms
78,164 KB
testcase_02 AC 147 ms
78,852 KB
testcase_03 AC 1,161 ms
79,316 KB
testcase_04 AC 399 ms
78,784 KB
testcase_05 AC 1,951 ms
80,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from functools import lru_cache

@lru_cache(maxsize=None)
def Divisors(N):
    divisors=[]
    for i in range(1,N+1):
        if i**2>=N:
            break
        elif N%i==0:
            divisors.append(i)
    if i**2==N:
        divisors+=[i]+[N//i for i in divisors[::-1]]
    else:
        divisors+=[N//i for i in divisors[::-1]]
    return divisors

Q=int(input())
for q in range(Q):
    a,b,c,d=map(int,input().split())
    M=10**18
    def tree(p,q):
        retu=[]
        D=Divisors(q-p)
        while q-p>=2:
            mi=min((-p)%d for d in D[1:] if (q-p)%d==0)
            pp=p+mi
            qq=q+mi
            g=math.gcd(pp,qq)
            retu.append((q-p,p,pp))
            p,q=pp//g,qq//g
        retu.append((1,p,M))
        return retu
    tree0=tree(a,b)
    tree1=tree(c,d)
    assert len(tree0)<=30
    assert len(tree1)<=30
    tree0.sort()
    tree1.sort()
    while tree0 and tree1:
        if tree0[-1][0]<tree1[-1][0]:
            tree1.pop()
        elif tree0[-1][0]>tree1[-1][0]:
            tree0.pop()
        else:
            d0,a0,b0=tree0.pop()
            d1,a1,b1=tree1.pop()
            a=max(a0,a1)
            b=min(b0,b1)
            d=d0
            if a<=b:
                D,A=d,a
                break
    print(A,A+D)
0