Codeforces 934B A Prosperous Lot

B. A Prosperous Lot

Apart from Nian, there is a daemon named Sui, which terrifies children and causes them to become sick. Parents give their children money wrapped in red packets and put them under the pillow, so that when Sui tries to approach them, it will be driven away by the fairies inside.

Big Banban is hesitating over the amount of money to give out. He considers loops to be lucky since it symbolizes unity and harmony.

He would like to find a positive integer n not greater than 1018, such that there are exactly k loops in the decimal representation of n, or determine that such n does not exist.

loop is a planar area enclosed by lines in the digits' decimal representation written in Arabic numerals. For example, there is one loop in digit 4, two loops in 8 and no loops in 5. Refer to the figure below for all exact forms.

Input

The first and only line contains an integer k (1 ≤ k ≤ 106) — the desired number of loops.

Output

Output an integer — if no such n exists, output -1; otherwise output any such n. In the latter case, your output should be a positivedecimal integer not exceeding 1018.

Examples
input
2
output
462
input
6
output
8080

题意:0~9这十个数字里,有几个数字的形状里有环,就是首尾连接了。现在给你一个k,代表构造一个有k个圈的正整数,小于1e18,如果不存在输出-1。

思路:这题和A题有同样的特点:有神坑,有且仅有5个数字有圈:0,4,6,8,9,其中8里面有两个环。所以直接构造8,80,88,880,888,8880,1e18十九位,所以最长可以构造16位个8,即最大的k仅有36,当k>36时,直接特判-1。最大的坑是,k等于1的答案一定不是0,题目要求正整数,所以输出4,6,9均可AC。

#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll ans[50],k,tmp;
int main()
{
    ans[1]=6;tmp=8;
    for(ll i=2;i<=36;i++)
    {
        ans[i]=tmp;
        if(i&1)tmp+=8;
        else tmp*=10;
    }
    while(~scanf("%lld",&k))
    {
        if(k>36)printf("-1\n");
        else printf("%lld\n",ans[k]);
    }
    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值