H - Happy Birthday

You have a set of birthday cake candles. Each of such candles represents a digit between 0 and 9

, inclusive.

Example of birthday cake candles.

Let’s denote the candle representing the digit d
as d

-candle.

Your set contains c0
instances of 0-candles, c1 instances of 1-candles and so on. So, the total number of candles is c0+c1+⋯+c9

.

These digits are needed to wish your cat a happy birthday. For each birthday, starting with the first, you want to compose the age of the cat using the digits from the set.

Since you light candles for a very short time, candles don’t have time to burn out. For this reason you can reuse candles an arbitrary number of times (therefore your set of candles never changes).

For example, if you have one instance of each digit (i.e. c0=c1=⋯=c9=1
), you can compose any number from 1 to 10 using this set, but you cannot compose 11

.

You have to determine the first birthday, on which you cannot compose the age of the cat using the candles from your set. In other words, find the minimum number y
such that all numbers from 1 to y−1 can be composed by digits from your set, but y

cannot be composed.

Input

The first line contains an integer t

(1≤t≤104

) — the number of test cases in the input.

The only line of each test case contains ten integer numbers c0,c1,…,c9
(0≤ci≤105) — the number of 0-candles, 1-candles, 2

-candles and so on.

It is guaranteed that the sum of all ci
in the input does not exceed 106

.

Output

For each test case, output one integer in single line — the minimum age which cannot be composed by candles from your set. Please note that the age can be quite large (it may exceed the standard 64-bit integer types in your programming language).
 #include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <iostream>
#include <math.h>
#include <vector>
#include <string.h>
using namespace std;

const int k=1e5+10;

int main()
{
	long long t;
	cin>>t;
	int a[15];
	while(t--)
	{
		memset(a,0,sizeof(a));
		int k=0;
        int minn=0x3f3f3f3f;
		for(int i=0;i<10;i++)
		{
			scanf("%d",&a[i]);
		}
		for(int i=1;i<10;i++)
		{
			if(minn>a[i])
			{
				minn=a[i];
				k=i;
			}
		}
		if(a[0]>=minn)
		{
			for(int i=0;i<=minn;i++)
			{
				printf("%d",k);
			}
			printf("\n");
		}
		else
		{
			printf("1");
			for(int i=0;i<=a[0];i++)
			{
				printf("0");
		}
		printf("\n");
		}
	}
	return 0;
 }   
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

直接AC好吗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值