Pasha has a wooden stick of some positive integer length n. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obviously be n.
Pasha likes rectangles but hates squares, so he wonders, how many ways are there to split a stick into four parts so that it's possible to form a rectangle using these parts, but is impossible to form a square.
Your task is to help Pasha and count the number of such ways. Two ways to cut the stick are considered distinct if there exists some integer x, such that the number of parts of length x in the first way differ from the number of parts of length x in the second way.
The first line of the input contains a positive integer n (1 ≤ n ≤ 2·109) — the length of Pasha's stick.
The output should contain a single integer — the number of ways to split Pasha's stick into four parts of positive integer length so that it's possible to make a rectangle by connecting the ends of these parts, but is impossible to form a square.
6
1
20
4
There is only one way to divide the stick in the first sample {1, 1, 2, 2}.
Four ways to divide the stick in the second sample are {1, 1, 9, 9}, {2, 2, 8, 8}, {3, 3, 7, 7} and {4, 4, 6, 6}. Note that {5, 5, 5, 5} doesn't work.
简单的数学题,需要注意的当n为奇数时,输出为0
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
int main()
{
// freopen("shuju.txt","r",stdin);
int n;
cin>>n;
if(n&1)
printf("0\n");
else
{
n=n/2;
if(n&1)
printf("%d\n",n/2);
else
printf("%d\n",n/2-1);
}
return 0;
}
Pasha与棍子问题解析
探讨Pasha如何将棍子切割成四部分以形成矩形而非正方形的方法数量。文章提供了一个简洁的C++代码示例,展示了解决这一数学问题的具体实现。
511

被折叠的 条评论
为什么被折叠?



