码迷,mamicode.com
首页 > 编程语言 > 详细

【百度之星】【java大数+C++做法】Strassen

时间:2019-08-25 18:27:11      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:oid   大数   搜索   img   return   def   mat   ios   iostream   

技术图片

 

代码:递归搜索一下。java大数做法

import java.util.*;
import java.math.*;
import java.security.MessageDigest;

public class Main {
     static BigInteger s=BigInteger.ONE.add(BigInteger.ONE);
    public static void main(String[] args) {
        Scanner cin=new Scanner(System.in);
        int T;
        T=cin.nextInt();
        while(T-->0)
        {
            BigInteger a,b,n;
            
            n=cin.nextBigInteger();
            a=cin.nextBigInteger();
            b=cin.nextBigInteger();
            BigInteger ans=cul(n,a,b).mod(BigInteger.valueOf(1000000007));
            System.out.println(ans);
            
        }
    }
    public static BigInteger cul(BigInteger n,BigInteger a,BigInteger b)
    {
        if(n.equals(BigInteger.ONE))
        {
            BigInteger sum1=n.multiply(n).multiply(n).multiply(b).add(n.subtract(BigInteger.ONE).multiply(n).multiply(n).multiply(a));
            return sum1;
        }
        return min((n.divide(s)).multiply(n.divide(s)).multiply(BigInteger.valueOf(18)).multiply(a).add(cul(n.divide(s),a,b).multiply(BigInteger.valueOf(7))),n.multiply(n).multiply(n).multiply(b).add(n.subtract(BigInteger.ONE).multiply(n).multiply(n).multiply(a)));
    }
    private static BigInteger min(BigInteger add, BigInteger add2) {
        // TODO Auto-generated method stub
        if(add.compareTo(add2)<0)
            return add;
        else return add2;
    }
}

 

C++:

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<queue>
#include<set>
#include<cmath>
#include<string>
#include<map>
#include<vector>
#include<ctime>
#include<stack>
using namespace std;
#define mm(a,b) memset(a,b,sizeof(a))
typedef long long ll;
const long long mod = 1e9 + 7;
const int maxn = 1e5 + 10;
const ll inf = 1e18;
ll a, b;
ll f1(ll n) {
    n %= mod;
    return (n*n%mod*n%mod*b%mod + n * n%mod*(n - 1) % mod*a%mod) % mod;
}
ll f2(ll n) {
    if (n % 2) return f1(n);
    if (n <= 30 * a / (a + b)) return f1(n);
    return (18 * (n / 2) % mod*(n / 2) % mod*a%mod + 7 * f2(n / 2) % mod) % mod;
}
int main()
{
    int t;
    ll n;
    cin >> t;
    while (t--)
    {
        scanf("%lld%lld%lld", &n, &a, &b);
        printf("%lld\n", f2(n));
    }
}

 

【百度之星】【java大数+C++做法】Strassen

标签:oid   大数   搜索   img   return   def   mat   ios   iostream   

原文地址:https://www.cnblogs.com/Tangent-1231/p/11408524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!