BZOJ2005: [Noi2010] Energy harvesting

Source: Internet
Author: User
Tags gcd

LSJ Brother's Puzzle

The energy loss for a point (x, y) is (gcd (x, y)-1) * 2 + 1 = gcd (x, y) * 2-1.

Set g (i) to gcd (x, y) = I (1 <= x <= N, 1 <= y <= m) Number of pairs (x, y). This is not good, consider the allowance, set F (i) for the number of pairs containing common factor I (x, y) (1 <= x <= N, 1 <= y <= m) number, obviously f (i) = (n/i) * (m/i). Then g (i) = f (i)-∑f (i * k) (k >= 2, I * k <= min (n, m)).

Then answer =∑ (g (i) * 2-1)

Of course, with Möbius or Euler functions can be a ...

#include <cstdio> #include <cstring> #include <iostream> #include <algorithm>using namespace STD; #define REP (I,s,t) for (int. i=s;i<=t;i++) #define DWN (i,s,t) for (int i=s;i>=t;i--) #define CLR (x,c) memset (X,c, sizeof (x)) #define LL Long Longll F[100005];int main () {    int n,m;scanf ("%d%d", &n,&m);    int tmp=min (n,m);    ll Ans=0;    Dwn (i,tmp,1) {        f[i]= (ll) (m/i) * (n/i);        for (int j=i+i;j<=tmp;j+=i) f[i]-=f[j];        ans+=f[i]* (2*i-1);    }    printf ("%lld\n", ans);    

  

2005: [Noi2010] Energy acquisition time limit:10 Sec Memory limit:552 MB
submit:3180 solved:1888
[Submit] [Status] [Discuss] The description building has a rectangular land, and he planted an energy plant on the ground that collects the energy of sunlight. After the plants collected energy, the building then used an energy pooling machine to bring together the energy collected by the plants. The plants in the building are very neatly planted, there are n columns, each of which has m, and the plant's spacing is the same, so for each plant, the building can be represented by a coordinate (x, y), where the range of x is 1 to n, that is in column X, the range of Y is 1 to M, and that is the nth tree in column X. Because the energy collection machine is large and inconvenient to move, the building puts it on a corner with coordinates exactly (0, 0). The energy pooling machine has a certain energy loss during the collection process. If a plant is connected to an energy collection machine with a K plant on its line, the loss of energy is 2k + 1. For example, when the energy collection machine collects plants with coordinates of (2, 4), there is a 3 loss of energy due to the presence of a plant (1, 2) on the connecting segment. Note that if a plant has no plants on the line segment connected to the energy pooling machine, the energy loss is 1. Now we have to calculate the total energy loss. An example of energy harvesting is given below, where n = 5,m = 4, a total of 20 plants, showing the energy loss generated by the energy collection machine on each plant. In this example, a total of 36 of the energy loss is generated. Input

Contains only one row, which is two integers n and M.

Output

Contains only an integer that represents the total energy loss generated.

Sample Input"Sample Input 1"
5 4
"Sample Input 2"
3 4

Sample Output"Sample Output 1"
36
"Sample Output 2"
20
For 100% data: 1≤n, m≤100,000.
HINT Source [Submit] [Status] [Discuss]

BZOJ2005: [Noi2010] Energy harvesting

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.