Decrease the Sum of Digits

You are given a positive integer n. In one move, you can increase n by one (i.e. make n:=n+1). Your task is to find the minimum number of moves you need to perform in order to make the sum of digits of n be less than or equal to s.

You have to answer t independent test cases.

Input
The first line of the input contains one integer t (1≤t≤2⋅104) — the number of test cases. Then t test cases follow.

The only line of the test case contains two integers n and s (1≤n≤1018; 1≤s≤162).

Output
For each test case, print the answer: the minimum number of moves you need to perform in order to make the sum of digits of n be less than or equal to s.

Example
Input
5
2 1
1 1
500 4
217871987498122 10
100000000000000001 1
Output
8
0
500
2128012501878
899999999999999999

翻译:

给你一个正整数n。一步,你可以把n增加1(即使n:=n+1)。您的任务是找出要使n的位数之和小于或等于s所需执行的最小移动次数。
你必须回答t个独立的测试用例。
输入
输入的第一行包含一个整数t(1≤t≤2104-测试用例的数量。接下来是t测试用例。
测试用例的唯一一行包含两个整数n和s(1≤n≤10181≤s≤162)。
输出
对于每个测试用例,打印答案:为了使n的位数之和小于或等于s,您需要执行的最小移动次数。
例子
输入
5
2 1
11
500 4
217871987498122 10
1000000000000001 1
输出
8
0
500
2128012501878
899999999999999999

第一次代码:ac但是改成cin,cout时间容易超时(1500ms)

#include<iostream>
#include<string.h>
using namespace std;
typedef long long ll;
ll str=0.;
ll len;
char ch[22];
int s;
ll pp;
ll getsum(int ln){
	int res=0;
		for(int i=0;i<ln;++i){
			res+=(ch[i]-'0');
		}
		cout<<endl;
	if(res<0)res=0;
	return res;
}
void solv(){
	str=0;
	memset(ch,0,sizeof(ch));
	
	scanf("%s %d",&ch,&s);
	len=strlen(ch);
	pp=1;
	int t=getsum(len);
	
	
	if(t<=s){
		printf("0\n");
		return;
	}
	
	//字符串反转
	char cht;
        int i=0;
	for(i=0;i<len/2;++i){//12345  54321   123456  654321
		cht=ch[i];
		ch[i]=ch[len-i-1];
		ch[len-i-1]=cht;
	} 
	
	for(i=0;i<len;++i){
		str+=((10-(ch[i]-'0'))*pp);
		ch[i]='0';
		ch[i+1]+=1;
		pp*=10;
		if(i+1>=len){
			len+=1;
			ch[i+1]='1';
		}
		t=getsum(len);
		if(t<=s){
			break;
		}
	}
	
	printf("%lld\n",str);
	
}

int main(){
	int n;
	scanf("%ld",&n);
	while(n--){
		solv();
	}
	
	return 0;
} 

优化思路:每次判断
t=getsum(len); if(t<=s){ break; }
可以在第一次的基础上进行
不需要每次调用函数

第二次:ac,93ms

#include<iostream>
#include<string.h>
using namespace std;
typedef long long ll;
ll str=0.;
ll len;
char ch[22];
int s;
ll pp;
ll getsum(int ln){
//	cout<<"ln="<<ln<<endl;
	int res=0;
		for(int i=0;i<ln;++i){
	//		cout<<"ch= "<<ch[i]<<" ";
			res+=(ch[i]-'0');
		}
	if(res<0)res=0;
	return res;
}
void solve(){
	str=0;
	memset(ch,0,sizeof(ch));
	
	scanf("%s %d",&ch,&s);
	len=strlen(ch);
	pp=1;
	int t=getsum(len);
	
	//cout<<"t="<<t<<endl;
	if(t<=s){
		printf("0\n");
		return;
	}
	
	//字符串反转  原因:因为要进为  如: 500 -> 1000   反转后 005 -> 0001 
	char cht;
	for(int i=0;i<len/2;++i){//123465
		cht=ch[i];
		ch[i]=ch[len-i-1];
		ch[len-i-1]=cht;
	} 
	
	for(int i=0;i<len;++i){
		str+=((10-(ch[i]-'0'))*pp);
		t=t-(ch[i]-'0')+1; 
		ch[i]='0';
		ch[i+1]+=1;
		pp*=10;//根据*10得到该位的十进制上的值 
		if(i+1>=len){//进位  
			len+=1;
			ch[i+1]='1';
			
		}
		//t=getsum(len);
	//	cout<<"t="<<t<<endl;
		//t=t-(ch[i]-'0')+1; 
		if(t<=s){
			break;
		}
	}
	printf("%lld\n",str);
}

int main(){
	int n;
	cin>>n;
	while(n--){
		solve();//solve解决方案 
	}
	
	return 0;
} 
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值