Day 53 A. Sequence with Digits

Problem
Let’s define the following recurrence:

an+1=an+minDigit(an)⋅maxDigit(an).

Here minDigit(x) and maxDigit(x) are the minimal and maximal digits in the decimal representation of x without leading zeroes.
For examples refer to notes.
Your task is calculate aK for given a1 and K.

Input
The first line contains one integer t (1≤t≤1000) — the number of independent test cases.

Each test case consists of a single line containing two integers a1 and K (1≤a1≤10^18, 1≤K≤10^16) separated by a space.

Output
For each test case print one integer aK on a separate line.

Example
input
8
1 4
487 1
487 2
487 3
487 4
487 5
487 6
487 7
output
487
519
528
544
564
588
628

Note
a1=487

a2=a1+minDigit(a1)⋅maxDigit(a1)=487+min(4,8,7)⋅max(4,8,7)=487+4⋅8=519

a3=a2+minDigit(a2)⋅maxDigit(a2)=519+min(5,1,9)⋅max(5,1,9)=519+1⋅9=528

a4=a3+minDigit(a3)⋅maxDigit(a3)=528+min(5,2,8)⋅max(5,2,8)=528+2⋅8=544

a5=a4+minDigit(a4)⋅maxDigit(a4)=544+min(5,4,4)⋅max(5,4,4)=544+4⋅5=564

a6=a5+minDigit(a5)⋅maxDigit(a5)=564+min(5,6,4)⋅max(5,6,4)=564+4⋅6=588

a7=a6+minDigit(a6)⋅maxDigit(a6)=588+min(5,8,8)⋅max(5,8,8)=588+5⋅8=628

#include<iostream>
#include<algorithm>
#include<string.h>
#include<vector>
#include<stdio.h>
#include<limits.h>
#include<queue>
#include<cmath>
#include<set>
#include<map>
#define ll long long
using namespace std;
const int INF = 0x3f3f3f3f;
int main()
{
	int t;
	cin >> t;
	while (t--)
	{
		ll a1, k;
		cin >> a1 >> k;
		
		for (int i = 1; i <= k - 1; i++)
		{
			int mx = 0;
			int mi = INF;
			ll res = a1;
			while (res)
			{
				int x = res % 10;
				mx = max(x, mx);
				mi = min(x, mi);
				res /= 10;
			}
			if (mi == 0)
			{
				break;
			}
			a1 = a1 + 1ll * mi * mx;
		}
		cout << a1 << endl;
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值