1. 程式人生 > >CF 899D Shovel Sale(數學)

CF 899D Shovel Sale(數學)

air deb visit bar ogr div -c hold long

題目鏈接:http://codeforces.com/problemset/problem/899/D

題目:

There are n shovels in Polycarp‘s shop. The i-th shovel costs i burles, that is, the first shovel costs 1 burle, the second shovel costs 2burles, the third shovel costs 3 burles, and so on. Polycarps wants to sell shovels in pairs.

Visitors are more likely to buy a pair of shovels if their total cost ends with several 9s. Because of this, Polycarp wants to choose a pair of shovels to sell in such a way that the sum of their costs ends with maximum possible number of nines. For example, if he chooses shovels with costs 12345 and 37454, their total cost is 49799, it ends with two nines.

You are to compute the number of pairs of shovels such that their total cost ends with maximum possible number of nines. Two pairs are considered different if there is a shovel presented in one pair, but not in the other.

Input

The first line contains a single integer n (2 ≤ n

 ≤ 109) — the number of shovels in Polycarp‘s shop.

Output

Print the number of pairs of shovels such that their total cost ends with maximum possible number of nines.

Note that it is possible that the largest number of 9s at the end is 0, then you should count all such ways.

It is guaranteed that for every n ≤ 109 the answer doesn‘t exceed 2·109.

Examples input Copy
7
output
3
input Copy
14
output
9
input Copy
50
output
1
Note

In the first example the maximum possible number of nines at the end is one. Polycarp cah choose the following pairs of shovels for that purpose:

  • 2 and 7;
  • 3 and 6;
  • 4 and 5.

In the second example the maximum number of nines at the end of total cost of two shovels is one. The following pairs of shovels suit Polycarp:

  • 1 and 8;
  • 2 and 7;
  • 3 and 6;
  • 4 and 5;
  • 5 and 14;
  • 6 and 13;
  • 7 and 12;
  • 8 and 11;
  • 9 and 10.

In the third example it is necessary to choose shovels 49 and 50, because the sum of their cost is 99, that means that the total number of nines is equal to two, which is maximum possible for n = 50.

題解:暴力打表找下規律。註意特判n<5的情況。

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 #define PI acos(-1.0)
 5 #define INF 0x3f3f3f3f
 6 #define FAST_IO ios::sync_with_stdio(false)
 7 #define eps 1e-8
 8 
 9 typedef long long LL;
10 
11 int main(){
12     LL n;
13     cin>>n;
14     if(n<=4) cout<<n*(n-1)/2<<endl;
15     else{
16         LL mul=1,ans=0,t=n;
17         while(t){
18             t/=10;
19             mul*=10;
20         }
21         if(n>=mul/2){
22             LL ans=n-mul/2+1;
23             if(n==(mul-1)) ans--;
24             cout<<ans<<endl;
25             return 0;
26         }   
27         mul/=10;
28         for(int i=1;i<=9;i++){
29             LL val=mul*i-1;
30             if(val<=n) ans+=val/2;
31             else if(val<=2*n) ans+=(2*n+2-val)/2;
32         }
33         cout<<ans<<endl;
34     }

CF 899D Shovel Sale(數學)