結果

問題 No.1648 Sum of Powers
ユーザー tamatotamato
提出日時 2021-08-13 23:06:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,079 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 92,292 KB
最終ジャッジ日時 2024-04-14 20:07:31
合計ジャッジ時間 15,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
91,648 KB
testcase_01 AC 159 ms
77,096 KB
testcase_02 AC 45 ms
64,932 KB
testcase_03 AC 44 ms
64,300 KB
testcase_04 AC 46 ms
64,504 KB
testcase_05 AC 45 ms
64,564 KB
testcase_06 AC 45 ms
65,500 KB
testcase_07 AC 45 ms
64,008 KB
testcase_08 AC 45 ms
63,764 KB
testcase_09 AC 46 ms
63,964 KB
testcase_10 AC 44 ms
64,200 KB
testcase_11 AC 43 ms
63,364 KB
testcase_12 AC 46 ms
64,740 KB
testcase_13 AC 45 ms
64,288 KB
testcase_14 AC 43 ms
62,940 KB
testcase_15 AC 45 ms
65,820 KB
testcase_16 AC 45 ms
64,396 KB
testcase_17 AC 46 ms
65,068 KB
testcase_18 AC 45 ms
64,252 KB
testcase_19 AC 45 ms
64,384 KB
testcase_20 AC 43 ms
63,472 KB
testcase_21 AC 45 ms
64,616 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 42 ms
64,368 KB
testcase_48 AC 157 ms
76,744 KB
testcase_49 AC 45 ms
64,124 KB
testcase_50 AC 45 ms
64,468 KB
testcase_51 AC 39 ms
59,300 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 41 ms
60,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def matmul(A, B):
        C = [[0] * len(B[0]) for _ in range(len(A))]
        for i in range(len(A)):
            for k in range(len(B)):
                for j in range(len(B[0])):
                    C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % mod
        return C

    def matpow(A, p):
        n = len(A)
        B = [[0] * n for _ in range(n)]
        for i in range(n):
            B[i][i] = 1
        while p > 0:
            if p & 1:
                B = matmul(B, A)
            A = matmul(A, A)
            p >>= 1
        return B

    # x**k == y % mod
    # O(mod**0.5)
    def DiscreteLog(x, y, mod):
        m = int(mod ** 0.5) + 1
        dic = {1: 0}

        # baby-step
        xi = 1
        for i in range(1, m + 1):
            xi = (xi * x) % mod
            dic[xi] = i
        if y in dic:
            return dic[y]

        # giant-step
        r = pow(xi, mod - 2, mod)
        for a in range(1, m + 1):
            y = (y * r) % mod
            if y in dic:
                return a * m + dic[y]

        return -1

    A, B, P, Q = map(int, input().split())

    if B == 0:
        ans = DiscreteLog(A, P, mod)
        if 2 <= ans <= 10 ** 18:
            print(ans)
        else:
            print(ans + mod - 1)
        exit()

    M = [[A, -B], [1, 0]]
    B_inv = pow(B, mod-2, mod)
    M_inv = [[0, 1], [(-B_inv)%mod, (A * B_inv)%mod]]

    M_pow = {}
    M_cur = [[1, 0], [0, 1]]
    initial_vec = [[A], [2]]
    for i in range(1, 10 ** 5 + 1):
        M_cur = matmul(M_cur, M)
        U = matmul(M_cur, initial_vec)
        U_hash = U[0][0] * mod + U[1][0]
        M_pow[U_hash] = i

    M_inv_cur = [[1, 0], [0, 1]]
    last_vec = [[P], [Q]]
    for i in range(1, 10 ** 5 + 1):
        M_inv_cur = matmul(M_inv_cur, M_inv)
        V = matmul(M_inv_cur, last_vec)
        V_hash = V[0][0] * mod + V[1][0]
        if V_hash in M_pow:
            j = M_pow[V_hash]
            print(i + j + 1)
            exit()


if __name__ == '__main__':
    main()
0