首页 > 其他 > 详细

POJ 1654

时间:2014-07-29 11:05:46      阅读:267      评论:0      收藏:0      [点我收藏+]

不知 是怎么看出的精度不够,吸经验吧。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;

char str[1000050];
int dir[10][2]={
{0,0},{-1,-1},{0,-1},{1,-1},{-1,0},{0,0},{1,0},{-1,1},{0,1},{1,1}
};

struct point{
	__int64 x,y;
};

__int64 cross(point a,point b){
	return a.x*b.y-b.x*a.y;
}

int main(){
	int t; __int64 xt,yt; __int64 ans;
	scanf("%d",&t);
	getchar();
	while(t--){
		scanf("%s",str);
		xt=yt=0; ans=0; point pre,now; pre.x=pre.y=0;
		for(int i=0;str[i]!=‘5‘;i++){
			xt+=dir[str[i]-‘0‘][0];
			yt+=dir[str[i]-‘0‘][1];
			now.x=xt; now.y=yt;
			ans+=cross(pre,now);
			pre=now;
		}
		if(xt==0&&yt==0){
			if(ans<0) ans=-ans;
			if(ans%2==0)
				printf("%I64d\n",ans/2);
			else printf("%I64d.5\n",ans/2);
		}
		else printf("0\n");
	}
	return 0;
}

  

POJ 1654,布布扣,bubuko.com

POJ 1654

原文:http://www.cnblogs.com/jie-dcai/p/3873964.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!