Discrete Logarithm is a Joke __int128 浮点数e

在这里插入图片描述
在这里插入图片描述

思路 :

  • 这段代码只能C++ 17的64位版本或者20的64位版本,否则会CE
  • a i = g a i + 1 a_i = g^{a_{i+1}} ai=gai+1,且样例给了上界的答案,所以倒推
  • long long会爆,所以要用__int128
  • __int128的输入输出方式
  • long long x = 1e18 + 31 cout x会得到1000(省略0),也就是说爆了,
  • double x = 1e18 + 31 cout x会得到1e+18,printf x会得到1000000000000000000.000000
#include <iostream>

using namespace std;

typedef __int128 ll;

const int N = 1e6 + 10;

//const ll mod = 1e18 + 31;   wa!!不要用浮点数表示整数
const ll mod = 1000000000000000031;

ll f[N];

ll qmi(ll a, ll b, ll q)
{
    ll res = 1 % q;
    while (b)
    {
        if (b & 1) res = res * a % q;
        a = a * (ll)a % q;
        b >>= 1;
    }
    return res;
}

inline __int128 read()
{
    __int128 x = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9')
    {
        if (ch == '-') f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9')
    {
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}

inline void print(__int128 x)
{
    if (x < 0)
    {
        putchar('-');
        x = -x;
    }
    if (x > 9)
        print(x / 10);
    putchar(x % 10 + '0');
}

int main()
{
    int n = 1e6;
    f[n] = 300;
    for (int i = n - 1; i >= 0; i -- )
        f[i] = qmi(42ll, f[i + 1], mod);
    
    int x;
    cin >> x;
    
    print(f[x]);

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值