結果

問題 No.2183 LCA on Rational Tree
ユーザー vwxyzvwxyz
提出日時 2024-06-02 03:53:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,151 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,968 KB
最終ジャッジ日時 2024-06-02 03:53:47
合計ジャッジ時間 5,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict

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**9
    def tree(p,q):
        D=Divisors(q-p)
        def f(p,q):
            if q-p==1:
                return [((p,q),(M,M+1))]
            lst=[]
            for d in D[1:]:
                if (q-p)%d==0:
                    lst.append((-p)%d)
            if lst:
                mi=min(lst)
                pp=p+mi
                qq=q+mi
                g=math.gcd(pp,qq)
                return [((p,q),(pp,qq))]+f(pp//g,qq//g)
            else:
                return [((p,q),(1,q-p+1))]
        return f(p,q)
    tree0=tree(a,b)
    tree1=tree(c,d)
    dct=defaultdict(list)
    for ((a0,b0),(c0,d0)) in tree0:
        dct[b0-a0].append((a0,c0))
    for ((a1,b1),(c1,d1)) in tree1:
        dct[b1-a1].append((a1,c1))
0