• XidianOJ 1182 Chinese Paladin – Qi’s troubles


    题目描述

    As we all know, Xiahou Jinxuan (Chinese Paladin 5 Prequel’s protagonist) and Yue Jinzhao 

    (Chinese Paladin 6’s protagonist) are the most intelligent in Legend series. But who is more NB? 

    However,it's not enough that only themselves are NB ,they believe that who's wife is more

     intelligent,who is more NB.
    So they ask their wives to compete. In this case, Xia (Xiahou Jinxuan 's wife) said to Qi

     (Yue Jinzhao 's wife) , "Well, I have a problem, if you can answer it, I will admit that your husband is more NB than my husband." Xia is confident, because Qi is only three years old (why is Qi too 

    young but has a husband, please play Chinese Paladin 6), even if she is a genius, she certainly can't answer it.
    Here is the problem: Give you a number n, then constructed a number sequence as following : n, n + 1, n + 2,n + 1, n + 2, n + 3, n + 2, n + 3, n + 4 ... 
    calculate the sum of the first m items of this number sequence , and outputs the result mod 23333333333, 1 <= n, m <= 10 ^ 12.
    Please help Qi to solve the problem, Qi doesn’t want to make Jinzhao ashamed ~

    输入

    Multiple test cases, please read until EOF

    For each test case: One line contains two single integer n, m separated by space

    (1 <= n, m <= 10 ^ 12)

    输出

     For each test case:

    One line contains a single integer, the answer.

    --正文

    前面大段废话,我特意去查了Chinese Paladin,竟然是仙剑www

    其实就是三个一循环,很容易找到式子来计算

    主要大数的乘法

    #include<iostream>
    #include<cstring>
    #include<cstdio>
    #include<algorithm>
    #include<cmath>
    #define MOD 23333333333
    using namespace std;
    typedef long long LL;
    LL n,m;
    
    
    LL big_multi(LL a,LL b){
        LL ans = 0;
        a = a % MOD;
        while (b){
            if (b & 1) ans = (ans + a) % MOD;
            b = b >> 1;
            a = (a + a) % MOD;
        }
        return ans;
    } 
    
    int main(){
        while (scanf("%lld %lld",&n,&m) != EOF){
            LL m3 = m/3;
            LL mmod3 = m%3; 
            LL res;
            if (m3 % 2 == 0)
                res = (big_multi(n,m) + big_multi(3*m3/2,m3+1)) % MOD;
            else 
                res = (big_multi(n,m) + big_multi(3*m3,(m3+1)/2)) % MOD;
            if (mmod3 == 1){
                res = (res + m3) % MOD; 
            }
            if (mmod3 == 2){
                res = (res + m3 + m3 + 1) % MOD;
            }
            printf("%lld
    ",res);
        }
        return 0;
    }
  • 相关阅读:
    正则表达式
    vim
    linux 6 安装 zabbix.3服务
    内核链表学习记录
    rpc-protobuff-实现
    Qedis实现
    try-catch 异常捕获学习
    协程的学习和使用
    惊群的学习研究 这人的博客还有其他干货
    互斥锁与自旋锁的区别测试代码
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/6155521.html
Copyright © 2020-2023  润新知