【codeforces 610A】Pasha and Stick

来源:互联网 发布:电工仿真软件下载 编辑:程序博客网 时间:2024/05/22 04:57

题目地址
A. Pasha and Stick
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Input
The first line of the input contains a positive integer n (1 ≤ n ≤ 2·109) — the length of Pasha’s stick.

Output
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.

Examples
input
6
output
1
input
20
output
4
Note
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.

题目大意:
给你一个数 判断是否存在四个相加和为这个数的数,还能组成长方形,四个数不能相等
他不喜欢正方形

众所周知,长方形的周长 = 2 * (长 + 宽)
∴首先判断这个数的奇偶,奇数显然不能二等分,去掉
偶数看它能被拆成多少对,比如4能拆成1 + 3和 2 + 2
不能是正方形,去掉2 + 2的情况

代码如下

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <queue>using namespace std;int n,a,ans;int main(){    scanf("%d",&n);     if(n % 2 == 1){        puts("0");        return 0;    }    a = n / 2;    if(a % 2 == 0)  ans = a / 2 - 1;    else    ans = a / 2;    printf("%d\n",ans);    return 0;}
原创粉丝点击