TOJ-3474 The Big Dance(递归二分)

链接:https://ac.nowcoder.com/acm/contest/1077/L

题目描述

Bessie and the herd, N (1 <= N <= 2,200) conveniently numbered 1..N cows in all, have gone to a dance where plenty of bulls are available as dancing partners. This dance is known as the "odd cow out" dance because of the way cows are chosen to dance with bulls.
The cows are lined up in numerical order and the 'middle' point is chosen. It either divides the line of cows exactly in half or it is chosen so that the first set of cows has just one more cow in it than the second set. If exactly two cows are in the set, they are chosen to dance with bulls. If one cow is in the set, she is sent home with a consolation prize of a beautiful rose.
If the set has more than two cows in it, the process is repeated perhaps again and again until sets with just one or two cows emerge.
The two cow ID numbers are multiplied together and added to a global sum.
Given the number of cows at the dance, compute the global sum after all the eligible cows are chosen.
Consider a dance with 11 cows numbered 1..11. Here is the sequence of dividing them:
1     2     3     4     5     6  |  7     8     9     10     11

    1     2     3  |  4     5     6

        1     2  |  3
                1  2        => 1*2=2 added to sum -> sum=2
                3           => sent home with rose

        4     5  |  6
                4  5        => 4*5=20 added to sum -> sum=22
                6           => sent home with rose

    7     8     9  | 10    11

        7     8  |  9
                7  8        => 7*8=56 added to sum -> sum=78
                9           => sent home with rose
        10    11            => 10*11=110 added to sum -> sum=188

So the sum for this dance would be 188.

输入描述:

* Line 1: A single integer: N

输出描述:

* Line 1: A single integer that is the sum computed as prescribed.

示例1

输入

11

输出

188

简单二分,直接粘代码

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <iostream>
 4 #include <string>
 5 #include <math.h>
 6 #include <algorithm>
 7 #include <vector>
 8 #include <queue>
 9 #include <set>
10 #include <map>
11 #include <math.h>
12 const int INF=0x3f3f3f3f;
13 typedef long long LL;
14 const int mod=1e9+7;
15 const double PI=acos(-1);
16 const int maxn=100010;
17 using namespace std;
18 //ios::sync_with_stdio(false);
19 //    cin.tie(NULL);
20 
21 int n,ans;
22 
23 void solve(int l,int r)
24 {
25     if(l==r)
26         return ;
27     if(l+1==r)
28     {
29         ans+=l*r;
30         return ;
31     }
32     int mid=(l+r)>>1;
33     solve(l,mid);
34     solve(mid+1,r);
35     return ;
36 }
37 
38 int main()
39 {
40     scanf("%d",&n);
41     solve(1,n);
42     printf("%d
",ans);
43     return 0;
44 }
 
 
 
原文地址:https://www.cnblogs.com/jiamian/p/11382986.html