LightOJ-1282-Leading and Trailing-快速幂+数学

You are given two integers: n and k, your task is to find the most significant three digits, and least significant three digits of nk.

Input
Input starts with an integer T (≤ 1000), denoting the number of test cases.

Each case starts with a line containing two integers: n (2 ≤ n < 231) and k (1 ≤ k ≤ 107).

Output
For each case, print the case number and the three leading digits (most significant) and three trailing digits (least significant). You can assume that the input is given such that nk contains at least six digits.

Sample Input
5
123456 1
123456 2
2 31
2 32
29 8751919
Sample Output
Case 1: 123 456
Case 2: 152 936
Case 3: 214 648
Case 4: 429 296
Case 5: 665 669

 

题意:

  求n^k的前三位leading和后三位treiling。

一开始英文是没看懂的,

第二次做是知道用什么方法,但也是个大概,因为很多小细节需要注意,强制转换和控制格式。

 

fmod函数的具体用法:

https://www.runoob.com/cprogramming/c-function-fmod.html

返回double型 fmod(double,int);

 

思路:

前三位:运用对数(这一部分我好像没有学好)

后三位:快速幂取余

求一个数的几次方的前三位有一个公式=n^k/(10^(t-3));
fmod(double,int)是一个函数,求一个数的小数部分;
由于任意一个数都可以写成10的几次方,只不过这个几次方可能是个小数;
所以小数部分就是决定前几位的数是几的关键,然后再用pow()函数。

 

 

这一题求快速幂的时候不能传入int,因为在第二组数据上的后三位会造成数据溢出int变成负数。

但是我也不知道为什么主函数传入int,在调用的函数中定义为ll是可以的???这是一个问题。

 

 1 #include<stdio.h>
 2 #include<math.h>
 3 #include<string.h>
 4 #include<iostream>
 5 typedef long long ll;
 6 using namespace std;
 7 
 8 
 9 ll mod_pow(ll x,ll n,ll mod)
10 {
11     ll res=1;
12     while(n>0)
13     {
14         if(n&1)
15             res=res*x%mod;
16         x=x*x%mod;
17         n>>=1;
18     }
19     return res;
20 }
21 
22 int main()
23 {
24     int t,n,k;
25     int tt=1;
26     while(~scanf("%d",&t))
27     {
28         while(t--)
29         {
30             scanf("%d %d",&n,&k);
31             double qq=pow(10*1.0,fmod(k*1.0*(log10(n*1.0)),1));////前三位
32             int hh=mod_pow(n,k,1000);//后三位
33             printf("Case %d: %03d %03d\n",tt++,(int)(qq*100),hh);
34         }
35     }
36     return 0;
37 }

 

转载于:https://www.cnblogs.com/OFSHK/p/11469474.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值