P1732Energy harvesting accepted Tag: noi2010[display label]<textarea id="code" class="textbox" style=""></textarea>Background description
The building has a rectangular land, he planted an energy plant on the ground, which can collect 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.
Format input Format
The input file contains only one row, which is two integers n and M.
Output format
The output file contains only an integer that represents the total energy loss generated.
Example 1 sample input 1[copy]
5 4
Sample output 1[Copy]
36
Example 2 sample input 2[copy]
3 4
Sample output 2[Copy]
20
Limit
Each test point is 1s.
Tips
For 10% data: 1≤n, m≤10;
For 50% data: 1≤n, m≤100;
For 80% data: 1≤n, m≤1000;
For 90% data: 1≤n, m≤10,000;
For 100% data: 1≤n, m≤100,000.
Source
NOI2010
First find the number of conventions I, then subtract the number of gcd (A, b)! = I, that is, the number of gcd (A, b) = = 1, and then
Apply the formula directly (K-1) * 2 + 1 (remember, the first loop is reversed)
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include < Algorithm>using namespace Std;typedef long long ll;const int MAXN = 1e5 + 5; ll DP[MAXN], Bp[maxn];int main () { ll n, m; scanf ("%i64d%i64d", &n, &m); LL min = min (n, m); memset (DP, 0, sizeof (DP)); memset (BP, 0, sizeof (BP)); for (int i = 1; I <= Min; i + +) { Dp[i] = (m/i) * (n/i); } LL ans = 0; for (int i = Min; I >= 1; I-) { bp[i] = dp[i]; for (int j = i * 2; J <= Min; j + = i) { bp[i]-= Bp[j]; } Ans + = bp[i] * ((i-1) * 2 + 1); } printf ("%i64d\n", ans); return 0;}
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
vijos-p1732 Energy harvesting (state transfer)