URAL 1385 Interesting Number 解题报告

比赛总结

题目链接

题意:给定n找出长度为2n的十进制数,使得该数能整除它的前n位和后n位。问这样的n位u数有几个。

解法一:打表,发现n=1,2时需要特判,n>=3时,结果为1575后加n-3个0

解法二:把这个数写成 a*10^n+b,则满足条件等价于b%a=0 and a*10^n%b=0,令 b=ka,则10^n%c=0。且a和b都是n位数。

当 n==1 c可为 1 2 5;当 n==2 c可为 1 2 4 5;n>=3 c可为1 2 4 5 8.

当a为n位数时,要控制a的范围保证b也是n位数。显然,n==1 ans=14,n==2 ans=155

n>=3时,令 a = 10^(n+1)

则(a/8-a/10)*5+(a/5-a/8)*4+(a/4-a/5)*3+(a/2-a/4)*2+(a-a/2)*5=63/40*(10^n)

于是可以得到和打表一样的结果……


//Memory: 377 KB		Time: 15 MS
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <queue>
#include <iostream>
using namespace std;
int num[10]={0,14,155,1575};
int main()
{
    int n;
    cin>>n;
    if(n<=3)   cout<<num[n]<<'\n';
    else
    {
        cout<<num[3];
        for(int i=4;i<=n;++i)   printf("0");
        printf("\n");
    }
    return 0;
}


你可能感兴趣的:(URAL 1385 Interesting Number 解题报告)