usaco 3.4.3

Electric Fence
Don Piele

In this problem, `lattice points' in the plane are points with integer coordinates.

In order to contain his cows, Farmer John constructs a triangular electric fence by stringing a "hot" wire from the origin (0,0) to a lattice point [n,m] (0<=;n<32000, 0<m<32000), then to a lattice point on the positive x axis [p,0] (p>0), and then back to the origin (0,0).

A cow can be placed at each lattice point within the fence without touching the fence (very thin cows). Cows can not be placed on lattice points that the fence touches. How many cows can a given fence hold?

PROGRAM NAME: fence9

INPUT FORMAT

The single input line contains three space-separated integers that denote n, m, and p.

SAMPLE INPUT (file fence9.in)

7 5 10

OUTPUT FORMAT

A single line with a single integer that represents the number of cows the specified fence can hold.

SAMPLE OUTPUT (file fence9.out)

20

皮克定理的简单应用。S=a+1/2*b-1,方格纸中每个小正方形的边长为1,其中a表示多边形内部的格点数,b表示多边形边界上的格点数,S表示多边形的面积。

/*
ID: fwj_ona1
LANG: C++
TASK: fence9
*/

#include <stdio.h>
#include <iostream>
#include <math.h>
using namespace std;

int gcd(int m,int n);
int main ()
{
	freopen ("fence9.in","r",stdin);
    freopen ("fence9.out","w",stdout);
	int n,m,p;
	double s,b;
	scanf("%d%d%d",&n,&m,&p);
	s=p*m*0.5;
	b=p+gcd(m,n)+gcd(abs(n-p),m);
	printf("%d\n",(int)(s+1-b/2));
	return 0;
}

int gcd(int m,int n)
{
	if(n==0)
		return m;
	while(1)
	{
		m = m%n;
		if(m==0)
			return n;
		n = n%m;
		if(n==0)
			return m;
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值