結果

問題 No.1648 Sum of Powers
ユーザー tamatotamato
提出日時 2021-08-13 23:12:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,176 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 93,568 KB
最終ジャッジ日時 2024-10-03 22:46:19
合計ジャッジ時間 13,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
91,524 KB
testcase_01 AC 35 ms
52,784 KB
testcase_02 AC 46 ms
65,088 KB
testcase_03 AC 43 ms
64,096 KB
testcase_04 AC 43 ms
64,176 KB
testcase_05 AC 42 ms
65,004 KB
testcase_06 AC 42 ms
64,484 KB
testcase_07 AC 44 ms
64,568 KB
testcase_08 AC 48 ms
64,052 KB
testcase_09 AC 46 ms
65,228 KB
testcase_10 AC 42 ms
64,800 KB
testcase_11 AC 42 ms
64,176 KB
testcase_12 AC 43 ms
64,660 KB
testcase_13 AC 41 ms
63,876 KB
testcase_14 AC 41 ms
64,892 KB
testcase_15 AC 43 ms
64,892 KB
testcase_16 AC 41 ms
64,884 KB
testcase_17 AC 43 ms
65,892 KB
testcase_18 AC 41 ms
65,148 KB
testcase_19 AC 41 ms
64,756 KB
testcase_20 AC 40 ms
63,492 KB
testcase_21 AC 42 ms
65,560 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 AC 41 ms
64,132 KB
testcase_48 AC 34 ms
53,632 KB
testcase_49 AC 45 ms
63,704 KB
testcase_50 AC 44 ms
64,148 KB
testcase_51 AC 38 ms
59,380 KB
testcase_52 AC 33 ms
53,328 KB
testcase_53 AC 36 ms
53,748 KB
testcase_54 AC 37 ms
54,516 KB
testcase_55 RE -
testcase_56 RE -
testcase_57 AC 37 ms
58,756 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()
    
    if (A * A - 2 * B)%mod == P and A == Q:
        print(2)
        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()
    assert False

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